Skip to content

Commit 369c224

Browse files
committed
fix: change the version for docstest issue
1 parent 781048d commit 369c224

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/chroma/testcontainers/chroma/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ChromaContainer(DockerContainer):
3232

3333
def __init__(
3434
self,
35-
image: str = "chromadb/chroma:0.6.3",
35+
image: str = "chromadb/chroma:1.0.0",
3636
port: int = 8000,
3737
**kwargs,
3838
) -> None:

modules/chroma/tests/test_chroma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
def test_docker_run_chroma():
6-
with ChromaContainer(image="chromadb/chroma:latest") as chroma:
6+
with ChromaContainer(image="chromadb/chroma:1.0.0") as chroma:
77
client = chromadb.HttpClient(host=chroma.get_config()["host"], port=chroma.get_config()["port"])
88
col = client.get_or_create_collection("test")
99
assert col.name == "test"

0 commit comments

Comments
 (0)