Skip to content

Commit

Permalink
temporarily comment gRPC tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antas-marcin committed Oct 24, 2023
1 parent 3694b30 commit 85b498b
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,24 @@ public class ClientBatchGrpcCreateTest {
public void before() {
host = compose.getServiceHost("weaviate_1", 8080);
port = compose.getServicePort("weaviate_1", 8080);
grpcHost = compose.getServiceHost("weaviate_1", 50051);
grpcPort = compose.getServicePort("weaviate_1", 50051);
// grpcHost = compose.getServiceHost("weaviate_1", 50051);
// grpcPort = compose.getServicePort("weaviate_1", 50051);
}

@Test
public void shouldCreateBatchUsingGRPC() {
testCreateBatch(true);
}

@Test
public void shouldCreateBatchWithNestedObjectUsingGRPC() {
testCreateBatchWithNested(true);
}

@Test
public void shouldCreateBatchWithNestedObjectAndNestedArrayObjectUsingGRPC() {
testCreateBatchWithNestedAndNestArrayObject(true);
}
// @Test
// public void shouldCreateBatchUsingGRPC() {
// testCreateBatch(true);
// }
//
// @Test
// public void shouldCreateBatchWithNestedObjectUsingGRPC() {
// testCreateBatchWithNested(true);
// }
//
// @Test
// public void shouldCreateBatchWithNestedObjectAndNestedArrayObjectUsingGRPC() {
// testCreateBatchWithNestedAndNestArrayObject(true);
// }

@Test
public void shouldCreateBatchUsingRest() {
Expand Down

0 comments on commit 85b498b

Please sign in to comment.