aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam McCall <sam.mccall@gmail.com>2017-11-07 14:59:21 +0000
committerSam McCall <sam.mccall@gmail.com>2017-11-07 14:59:21 +0000
commit2c8c163f829100ba9f9ab3ae85c7f364ad75d1ac (patch)
treeb8a4e7edcb852c1144006ebd3b363e8880b360c5
parent4e93cbe51ea0f967c45de0541a480aec48096eef (diff)
[clangd] MSVC - third time's the charm
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@317581 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--unittests/clangd/JSONExprTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/clangd/JSONExprTests.cpp b/unittests/clangd/JSONExprTests.cpp
index e1639a7d..a05b7f84 100644
--- a/unittests/clangd/JSONExprTests.cpp
+++ b/unittests/clangd/JSONExprTests.cpp
@@ -68,7 +68,7 @@ TEST(JSONExprTests, Escaping) {
'\xce', '\x94', // Non-ASCII UTF-8 is not escaped.
};
EXPECT_EQ(R"("\u0000\u0008\u000c\r\n\tS\"\\)"
- u8"\x7f\xce\x94\"",
+ "\x7f\xCE\x94\"",
s(test));
EXPECT_EQ(R"({"object keys are\nescaped":true})",