remove redundant scope block in CompileTimeFormattingTest::Combination test
This commit is contained in:
parent
af8bcb9fe5
commit
f9c1723019
@ -235,10 +235,8 @@ TEST(CompileTimeFormattingTest, String) {
|
||||
}
|
||||
|
||||
TEST(CompileTimeFormattingTest, Combination) {
|
||||
{
|
||||
constexpr auto result =
|
||||
test_format<18>(FMT_COMPILE("{}, {}, {}"), 420, true, "answer");
|
||||
EXPECT_EQ(result, "420, true, answer");
|
||||
}
|
||||
constexpr auto result =
|
||||
test_format<18>(FMT_COMPILE("{}, {}, {}"), 420, true, "answer");
|
||||
EXPECT_EQ(result, "420, true, answer");
|
||||
}
|
||||
#endif
|
||||
|
||||
Loading…
Reference in New Issue
Block a user