Skip to content

Commit

Permalink
Swap parameter order to match #2327 (#2329)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielaE authored May 31, 2021
1 parent e9e89b3 commit ba4c7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/module-test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit ba4c7f1

Please sign in to comment.