mirror of
https://github.com/fmtlib/fmt.git
synced 2026-05-05 20:14:11 +02:00
Fix incorrect call to on_align in '{:}=' (#750)
This commit is contained in:
@@ -435,6 +435,7 @@ TEST(FormatterTest, Fill) {
|
||||
EXPECT_EQ("c****", format("{0:*<5}", 'c'));
|
||||
EXPECT_EQ("abc**", format("{0:*<5}", "abc"));
|
||||
EXPECT_EQ("**0xface", format("{0:*>8}", reinterpret_cast<void*>(0xface)));
|
||||
EXPECT_EQ("foo=", format("{:}=", "foo"));
|
||||
}
|
||||
|
||||
TEST(FormatterTest, PlusSign) {
|
||||
|
||||
Reference in New Issue
Block a user