From 3faeee76317581ab0ef30b6e73cc2ea605439098 Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Mon, 13 Oct 2025 17:46:02 +0200 Subject: [PATCH] Update test_cache_config.py --- .../infrastructure/databases/cache/test_cache_config.py | 6 ------ 1 file changed, 6 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 74fe2d8b9..cb5086a70 100644 --- a/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py +++ b/cognee/tests/unit/infrastructure/databases/cache/test_cache_config.py @@ -76,12 +76,6 @@ def test_cache_config_extra_fields_allowed(): assert config.another_field == 123 -def test_cache_config_port_type_validation(): - """Test that cache_port validates integer type.""" - with pytest.raises(Exception): - CacheConfig(cache_port="not_a_number") - - def test_cache_config_boolean_type_validation(): """Test that boolean fields accept various truthy/falsy values.""" config1 = CacheConfig(caching="true", shared_kuzu_lock="yes")