File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
main/java/org/testcontainers/chromadb
test/java/org/testcontainers/chromadb Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ public ChromaDBContainer(DockerImageName dockerImageName) {
3030
3131 public ChromaDBContainer (DockerImageName dockerImageName , boolean isVersion2 ) {
3232 super (dockerImageName );
33-
3433 String apiPath = isVersion2 ? "/api/v2/heartbeat" : "/api/v1/heartbeat" ;
3534 dockerImageName .assertCompatibleWith (DEFAULT_DOCKER_IMAGE , GHCR_DOCKER_IMAGE );
3635 withExposedPorts (8000 );
Original file line number Diff line number Diff line change @@ -30,9 +30,7 @@ public void test() {
3030
3131 @ Test
3232 public void testVersion2 () {
33- try (
34- ChromaDBContainer chroma = new ChromaDBContainer ("chromadb/chroma:1.0.0" )
35- ) {
33+ try (ChromaDBContainer chroma = new ChromaDBContainer ("chromadb/chroma:1.0.0" )) {
3634 chroma .start ();
3735
3836 given ()
You can’t perform that action at this time.
0 commit comments