diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/xmpp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/xmpp.cpp b/tests/xmpp.cpp index 42b7c08..7ea03a9 100644 --- a/tests/xmpp.cpp +++ b/tests/xmpp.cpp @@ -43,7 +43,7 @@ TEST_CASE("Test basic XML parsing") TEST_CASE("XML escape") { - const std::string unescaped = "'coucou'<cc>/&\"gaga\""; + const std::string unescaped = R"('coucou'<cc>/&"gaga")"; CHECK(xml_escape(unescaped) == "'coucou'<cc>/&"gaga""); } |