Skip to content

Commit 94def7a

Browse files
committed
fix locale test for month
1 parent e0718a2 commit 94def7a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/chrono-test.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,8 @@ TEST(chrono_test, year_month_day) {
10381038
auto loc = get_locale("es_ES.UTF-8");
10391039
std::locale::global(loc);
10401040
if (loc != std::locale::classic()) {
1041-
EXPECT_EQ(fmt::format(loc, "{:L}", month), "ene.");
1042-
EXPECT_EQ(fmt::format(loc, "{:%b}", month), "ene.");
1041+
auto months = std::vector<std::string>{"ene.", "ene"};
1042+
EXPECT_THAT(months, Contains(fmt::format(loc, "{:L}", month)));
1043+
EXPECT_THAT(months, Contains(fmt::format(loc, "{:%b}", month)));
10431044
}
10441045
}

0 commit comments

Comments
 (0)