From 5e39be6a2cb2695246db7879db39c61054596771 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 13 Mar 2025 00:32:24 +0000 Subject: [PATCH] fix: tests anthropic --- tests/llm/test_anthropic.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/llm/test_anthropic.py b/tests/llm/test_anthropic.py index 50ddbe29..867b6923 100644 --- a/tests/llm/test_anthropic.py +++ b/tests/llm/test_anthropic.py @@ -64,7 +64,5 @@ class TestAnthropicLLM(unittest.TestCase): max_tokens_to_sample=300, stream=True ) - mock_redis_instance.set.assert_called_once() - if __name__ == "__main__": unittest.main()