diff --git a/chromadb/test/db/test_system.py b/chromadb/test/db/test_system.py index 26fcc3254970..e899ac0b204a 100644 --- a/chromadb/test/db/test_system.py +++ b/chromadb/test/db/test_system.py @@ -146,8 +146,7 @@ def db_fixtures() -> List[Callable[[], Generator[SysDB, None, None]]]: @pytest.fixture(scope="module", params=db_fixtures()) def sysdb(request: FixtureRequest) -> Generator[SysDB, None, None]: - sysdb = request.param() - yield next(sysdb) + yield next(request.param()) # region Collection tests