From 7ca51b573e7713be55c01d1af87342054622d68c Mon Sep 17 00:00:00 2001 From: miro Date: Sat, 25 Jan 2025 09:48:58 +0000 Subject: [PATCH] fix:improve cache cache domain intents in their own folder to avoid retraining when config changes improve error handling --- tests/test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_util.py b/tests/test_util.py index 58bb791..dce2963 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -16,7 +16,7 @@ def test_lines_hash(): - assert lines_hash(['word1', 'word2']) != lines_hash(['word2', 'word1']) + assert lines_hash(['word1', 'word2']) == lines_hash(['word2', 'word1']) assert lines_hash(['word1', 'word2']) != lines_hash(['word1', 'word1'])