소스 검색

Replace raw string in IncompleteJsonExceptionTest

Patrick-Christopher Mattulat 1 년 전
부모
커밋
63a1a73f47
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      test/cases/core/exception/IncompleteJsonExceptionTest.cpp

+ 2 - 2
test/cases/core/exception/IncompleteJsonExceptionTest.cpp

@@ -53,12 +53,12 @@ namespace
         {
           try
           {
-            throw IncompleteJsonException{R"(incomplete: {"name":"})"};
+            throw IncompleteJsonException{"incomplete: {\"name\":\"}"};
           }
           catch (const IncompleteJsonException &_exception)
           {
             ::std::string message = _exception.what();
-            EXPECT_STREQ(R"(IncompleteJsonException thrown - incomplete: {"name":"})", message.c_str());
+            EXPECT_STREQ("IncompleteJsonException thrown - incomplete: {\"name\":\"}", message.c_str());
             throw;
           }
         },