diff --git a/tests/carddatabase/filter_string_test.cpp b/tests/carddatabase/filter_string_test.cpp index 7961dbe8f..fd0ce37b8 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"); - truth = CardDatabaseManager::getInstance()->getCardBySimpleName("Truth or Tale"); + truth = CardDatabaseManager::getInstance()->getCardBySimpleName("Truth OR Tale"); } } // void TearDown() override {} @@ -38,7 +38,7 @@ 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, "not dead after all", true) -QUERY(NonKeyword4, truth, "truth or tale", true) +QUERY(NonKeyword4, truth, "truth or tale", false) QUERY(Case, cat, "t:cReAtUrE", true) QUERY(And, cat, "t:creature t:creature", true)