Skip to content

Commit

Permalink
Fixing Test cases
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Jain <[email protected]>
  • Loading branch information
vibrantvarun committed Jan 26, 2024
1 parent 5c7f883 commit bb393a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public class SparseEncodingProcessIT extends BaseNeuralSearchIT {
private static String modelId;

@Before
public void setUp() {
public void setUp() throws Exception {
super.setUp();
modelId = prepareSparseEncodingModel();
assertNotNull(modelId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class TextEmbeddingProcessorIT extends BaseNeuralSearchIT {

@Before
public void setUp() throws Exception {
super.setUp();
modelId = uploadTextEmbeddingModel();
assertNotNull(modelId);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public class TextImageEmbeddingProcessorIT extends BaseNeuralSearchIT {

@Before
public void setUp() throws Exception {
super.setUp();
modelId = uploadModel();
assertNotNull(modelId);
}
Expand Down

0 comments on commit bb393a8

Please sign in to comment.