From 63b261999581a6605fac9a175438a465f5a99f7d Mon Sep 17 00:00:00 2001 From: Ivo Elezovic Date: Wed, 24 Jul 2024 14:31:32 +0200 Subject: [PATCH] fix test --- .../PoliticalManagerTests/CountryTests/CountryTests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EU4ToVic3Tests/V3WorldTests/PoliticalManagerTests/CountryTests/CountryTests.cpp b/EU4ToVic3Tests/V3WorldTests/PoliticalManagerTests/CountryTests/CountryTests.cpp index 380bf2917..679a85fea 100644 --- a/EU4ToVic3Tests/V3WorldTests/PoliticalManagerTests/CountryTests/CountryTests.cpp +++ b/EU4ToVic3Tests/V3WorldTests/PoliticalManagerTests/CountryTests/CountryTests.cpp @@ -92,7 +92,7 @@ TEST(V3World_CountryTests, CountryCanImportColorFromEU4) EXPECT_EQ(commonItems::Color(std::array{1, 2, 3}), country.getProcessedData().color); } -TEST(V3World_CountryTests, CountryWillOverrideVic3colorWithEU4Color) +TEST(V3World_CountryTests, CountryWillOverrideEU4ColorWithVic3Color) { const V3::ClayManager clayManager; @@ -111,7 +111,7 @@ TEST(V3World_CountryTests, CountryWillOverrideVic3colorWithEU4Color) country.convertFromEU4Country(clayManager, culMapper, {}, {}, {}, {}, {}, false); EXPECT_TRUE(country.getProcessedData().color); - EXPECT_EQ(commonItems::Color(std::array{1, 2, 3}), country.getProcessedData().color); + EXPECT_EQ(commonItems::Color(std::array{4, 5, 6}), country.getProcessedData().color); } TEST(V3World_CountryTests, CountryWillNotOverrideVic3colorWithEU4ColorIfNone)