Fix some typos. (#3843)

This commit is contained in:
Bruce Mitchener
2024-02-09 01:59:52 +07:00
committed by GitHub
parent 0879504796
commit 3a6fb2fcaf
3 changed files with 3 additions and 3 deletions

View File

@ -517,7 +517,7 @@ TEST(locale_test, format) {
fmt::format(small_grouping_loc, "{:L}", max_value<uint32_t>()));
}
TEST(locale_test, format_detault_align) {
TEST(locale_test, format_default_align) {
auto loc = std::locale({}, new special_grouping<char>());
EXPECT_EQ(" 12,345", fmt::format(loc, "{:8L}", 12345));
}