From c831efae6e02f80004510a51625381ebb367a5b5 Mon Sep 17 00:00:00 2001 From: Lily <112970249+lilyhuang-github@users.noreply.github.com> Date: Sun, 6 Apr 2025 18:10:58 -0400 Subject: [PATCH] adjusted new test --- tests/carddatabase/filter_string_test.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/carddatabase/filter_string_test.cpp b/tests/carddatabase/filter_string_test.cpp index a90f4599f..73617b108 100644 --- a/tests/carddatabase/filter_string_test.cpp +++ b/tests/carddatabase/filter_string_test.cpp @@ -34,8 +34,7 @@ QUERY(MatchingType, cat, "t:creature", true) QUERY(Not1, cat, "NOT t:kithkin", true) QUERY(Not2, cat, "NOT t:creature", false) QUERY(NonKeyword1, cat, "not t:kithkin", false) -QUERY(NonKeyword2, cat, "not t:creature", true) -QUERY(NonKeyword3, cat, "t:bat or t:creature", false) +QUERY(NonKeyword2, cat, "t:bat or t:creature", false) QUERY(Case, cat, "t:cReAtUrE", true) QUERY(And, cat, "t:creature t:creature", true)