From 35493832260ee09aa9cea4950e2b9e8c6b16e51e Mon Sep 17 00:00:00 2001 From: Shuchu Han Date: Thu, 20 Jun 2024 00:49:51 -0400 Subject: [PATCH] fix: Minor typo in the unit test. (#4296) Signed-off-by: Shuchu Han --- .../tests/unit/local_feast_tests/test_local_feature_store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/tests/unit/local_feast_tests/test_local_feature_store.py b/sdk/python/tests/unit/local_feast_tests/test_local_feature_store.py index 9b75d1a2c9..0e834e314b 100644 --- a/sdk/python/tests/unit/local_feast_tests/test_local_feature_store.py +++ b/sdk/python/tests/unit/local_feast_tests/test_local_feature_store.py @@ -134,7 +134,7 @@ def test_apply_feature_view(test_feature_store): tags_filter = utils.tags_str_to_dict("('team:matchmaking',)") assert tags_filter == tags_dict tags_filter = utils.tags_list_to_dict(("team:matchmaking", "test")) - assert tags_dict == tags_dict + assert tags_filter == tags_dict # List Feature Views feature_views = test_feature_store.list_batch_feature_views(tags=tags_filter)