Skip to content

Commit

Permalink
apply spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Flores <[email protected]>
  • Loading branch information
brianf-aws committed Dec 17, 2024
1 parent 30316f9 commit f9caf1b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,10 @@ public void testExecute_xContentRegistryNullWithLocalModel_throwsException() thr

processor.execute(ingestDocument, handler);
verify(handler)
.accept(isNull(), argThat(exception -> exception instanceof NullPointerException && exception.getMessage().equals(npeMessage)));
.accept(
isNull(),
argThat(exception -> exception instanceof NullPointerException && exception.getMessage().equals(npeMessage))
);
} catch (Exception e) {
assertEquals("this catch block should not get executed.", e.getMessage());
}
Expand Down

0 comments on commit f9caf1b

Please sign in to comment.