From 6c1dd5230da0fdc11ce48491c9c5255c44e7ec03 Mon Sep 17 00:00:00 2001 From: Lily <112970249+lilyhuang-github@users.noreply.github.com> Date: Mon, 7 Apr 2025 15:31:49 -0400 Subject: [PATCH] update test case --- tests/carddatabase/filter_string_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/carddatabase/filter_string_test.cpp b/tests/carddatabase/filter_string_test.cpp index c0eae46ab..7961dbe8f 100644 --- a/tests/carddatabase/filter_string_test.cpp +++ b/tests/carddatabase/filter_string_test.cpp @@ -20,7 +20,7 @@ protected: { cat = CardDatabaseManager::getInstance()->getCardBySimpleName("Cat"); notDeadAfterAll = CardDatabaseManager::getInstance()->getCardBySimpleName("Not Dead After All"); - truthOrTale = CardDatabaseManager::getInstance()->getCardBySimpleName("Truth or Tale"); + truth = CardDatabaseManager::getInstance()->getCardBySimpleName("Truth or Tale"); } } // void TearDown() override {} @@ -37,8 +37,8 @@ QUERY(Not1, cat, "NOT t:kithkin", true) QUERY(Not2, cat, "NOT t:creature", false) QUERY(NonKeyword1, cat, "not t:kithkin", false) QUERY(NonKeyword2, cat, "t:bat or t:creature", false) -QUERY(NonKeyword3, notDeadAfterAll, "t:instant c:b", true) -QUERY(NonKeyword4, truthOrTale, "t:instant c:u", true) +QUERY(NonKeyword3, notDeadAfterAll, "not dead after all", true) +QUERY(NonKeyword4, truth, "truth or tale", true) QUERY(Case, cat, "t:cReAtUrE", true) QUERY(And, cat, "t:creature t:creature", true)