mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 11:14:41 +00:00
parent
e9e89b355b
commit
ba4c7f193b
@ -224,7 +224,7 @@ TEST(module_test, locale) {
|
||||
EXPECT_EQ("4.2", fmt::format(classic, "{:L}", 4.2));
|
||||
EXPECT_EQ("4.2", fmt::vformat(classic, "{:L}", store));
|
||||
std::string s;
|
||||
fmt::vformat_to(classic, std::back_inserter(s), "{:L}", store);
|
||||
fmt::vformat_to(std::back_inserter(s), classic, "{:L}", store);
|
||||
EXPECT_EQ("4.2", s);
|
||||
EXPECT_EQ("4.2", fmt::format("{:L}", 4.2));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user