Also merge the cmake change there to the gn build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@361209
91177308-0d34-0410-b5e6-
96231b3b80d8
)cc";
StringRef ID = "id";
TestMatch Match = matchCode(Code, callExpr().bind(ID));
- EXPECT_THAT_EXPECTED(select(callArgs(ID), Match), HasValue(R"( // Header
+ std::string ExpectedString = R"( // Header
1, // foo
2 // bar
- )"));
+ )";
+ EXPECT_THAT_EXPECTED(select(callArgs(ID), Match), HasValue(ExpectedString));
}
TEST(RangeSelectorTest, CallArgsErrors) {