From 0e44a77104316b24c9741d703109b2025447fb3e Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:45:39 +0200 Subject: [PATCH] Update test_cache_config.py --- .../infrastructure/databases/cache/test_cache_config.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py b/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py index dee722d0f..74fe2d8b9 100644 --- a/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py +++ b/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py @@ -4,14 +4,6 @@ import pytest from cognee.infrastructure.databases.cache.config import CacheConfig, get_cache_config -@pytest.fixture(autouse=True) -def reset_cache_config_singleton(): - """Reset the singleton instance between tests.""" - get_cache_config.cache_clear() - yield - get_cache_config.cache_clear() - - def test_cache_config_defaults(): """Test that CacheConfig has the correct default values.""" config = CacheConfig()