Skip to content

Commit f9caf1b

Browse files
committed
apply spotless
Signed-off-by: Brian Flores <[email protected]>
1 parent 30316f9 commit f9caf1b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

plugin/src/test/java/org/opensearch/ml/processor/MLInferenceIngestProcessorTests.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,10 @@ public void testExecute_xContentRegistryNullWithLocalModel_throwsException() thr
182182

183183
processor.execute(ingestDocument, handler);
184184
verify(handler)
185-
.accept(isNull(), argThat(exception -> exception instanceof NullPointerException && exception.getMessage().equals(npeMessage)));
185+
.accept(
186+
isNull(),
187+
argThat(exception -> exception instanceof NullPointerException && exception.getMessage().equals(npeMessage))
188+
);
186189
} catch (Exception e) {
187190
assertEquals("this catch block should not get executed.", e.getMessage());
188191
}

0 commit comments

Comments
 (0)