Skip to content

Commit 03af0fb

Browse files
adjust test
1 parent 41df523 commit 03af0fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_llmcache.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -793,11 +793,11 @@ def test_cache_index_overwrite(redis_url):
793793
except Exception as e:
794794
# This will fail in Redis 8+ on query dialect 2
795795
if "Unknown field" in str(e):
796-
pytest.skip("Skipping test due to unknown field error: " + str(e))
796+
response = []
797797
else:
798798
raise
799-
else:
800-
assert response == []
799+
800+
assert response == []
801801

802802
with pytest.raises((RedisModuleVersionError, ValueError)):
803803
SemanticCache(

0 commit comments

Comments
 (0)