File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
libs/redis/tests/integration_tests Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments