From d75e395fb2ed8b9c89a994dee56945268d504f62 Mon Sep 17 00:00:00 2001 From: Paul Carroll Date: Mon, 18 Aug 2025 10:50:26 -0400 Subject: [PATCH] update card db test --- 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 4818cd22e..182969678 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(8, db->getCardList().size()) << "Wrong card count after load"; + ASSERT_EQ(9, db->getCardList().size()) << "Wrong card count after load"; ASSERT_EQ(4, db->getSetList().size()) << "Wrong sets count after load"; ASSERT_EQ(3, db->getAllMainCardTypes().size()) << "Wrong types count after load"; ASSERT_EQ(Ok, db->getLoadStatus()) << "Wrong status after load";