Skip to content

Commit f6b5cc9

Browse files
phprusvitaut
authored andcommitted
Fix chrono_test.weekday on legacy glibc
1 parent 59a298f commit f6b5cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/chrono-test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ TEST(chrono_test, weekday) {
376376
auto mon = fmt::weekday(1);
377377
EXPECT_EQ(fmt::format("{}", mon), "Mon");
378378
if (loc != std::locale::classic()) {
379-
EXPECT_THAT((std::vector<std::string>{"пн", "Пн"}),
379+
EXPECT_THAT((std::vector<std::string>{"пн", "Пн", "пнд", "Пнд"}),
380380
Contains(fmt::format(loc, "{:L}", mon)));
381381
}
382382
}

0 commit comments

Comments
 (0)