Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemurin committed Jul 24, 2024
1 parent 66e1940 commit 63b2619
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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)
Expand Down

0 comments on commit 63b2619

Please sign in to comment.