From 00329b2f4100598cd870d8cbb346c2779d279c0f Mon Sep 17 00:00:00 2001 From: Lily <112970249+lilyhuang-github@users.noreply.github.com> Date: Thu, 17 Apr 2025 17:54:18 -0400 Subject: [PATCH] update cardatabase_test to include +2 cards --- tests/carddatabase/carddatabase_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/carddatabase/carddatabase_test.cpp b/tests/carddatabase/carddatabase_test.cpp index 752143f67..22e12c536 100644 --- a/tests/carddatabase/carddatabase_test.cpp +++ b/tests/carddatabase/carddatabase_test.cpp @@ -18,7 +18,7 @@ TEST(CardDatabaseTest, LoadXml) // load dummy cards and test result db->loadCardDatabases(); - ASSERT_EQ(6, db->getCardList().size()) << "Wrong card count after load"; + ASSERT_EQ(8, db->getCardList().size()) << "Wrong card count after load"; ASSERT_EQ(3, db->getSetList().size()) << "Wrong sets count after load"; ASSERT_EQ(2, db->getAllMainCardTypes().size()) << "Wrong types count after load"; ASSERT_EQ(Ok, db->getLoadStatus()) << "Wrong status after load";