Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
Signed-off-by: zane-neo <[email protected]>
  • Loading branch information
zane-neo committed Feb 21, 2024
1 parent 6679dbe commit 189daf6
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,11 @@ public void predict_BeforeInitingModel() {
public void test_async_inference() {
exceptionRule.expect(IllegalStateException.class);
exceptionRule.expectMessage("Method is not implemented");
textEmbeddingDenseModel.asyncPredict(MLInput.builder().algorithm(FunctionName.TEXT_EMBEDDING).inputDataset(inputDataSet).build(), mock(
ActionListener.class));
textEmbeddingDenseModel
.asyncPredict(
MLInput.builder().algorithm(FunctionName.TEXT_EMBEDDING).inputDataset(inputDataSet).build(),
mock(ActionListener.class)
);
}

@After
Expand Down

0 comments on commit 189daf6

Please sign in to comment.