Skip to content

Commit 47c5f5b

Browse files
committed
Remove tests and checks now moved into rvl
1 parent 3d55037 commit 47c5f5b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libs/redis/tests/integration_tests/test_langcache_semantic_cache_integration.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ async def test_aclear_removes_entries(
188188
await langcache_with_attrs.aclear()
189189
assert await langcache_with_attrs.alookup(prompt, llm_string) is None
190190

191-
192191
@pytest.mark.requires_api_keys
193192
class TestLangCacheSemanticCacheIntegrationWithoutAttributes:
194193
def test_update_errors_when_no_attributes_configured(
@@ -206,7 +205,9 @@ def test_update_errors_when_no_attributes_configured(
206205
[Generation(text="This should not be stored.")],
207206
)
208207

209-
assert "attributes are not configured for this cache" in str(exc.value).lower()
208+
assert (
209+
"attributes are not configured for this cache" in str(exc.value).lower()
210+
)
210211

211212
def test_lookup_errors_when_no_attributes_configured(
212213
self, langcache_no_attrs: LangCacheSemanticCache

0 commit comments

Comments
 (0)