diff options
Diffstat (limited to 'unittests/Format/FormatTest.cpp')
-rw-r--r-- | unittests/Format/FormatTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index d3144432d4..c3f364db39 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -537,8 +537,8 @@ TEST_F(FormatTest, LayoutRemainingTokens) { } TEST_F(FormatTest, LayoutSingleUnwrappedLineInMacro) { - EXPECT_EQ("#define A \\\n b;", - format("#define A b;", 10, 2, getLLVMStyleWithColumns(11))); + EXPECT_EQ("# define A\\\n b;", + format("# define A b;", 11, 2, getLLVMStyleWithColumns(11))); } TEST_F(FormatTest, MacroDefinitionInsideStatement) { |