diff --git a/unittests/CppInterOp/InterpreterTest.cpp b/unittests/CppInterOp/InterpreterTest.cpp index f9df69164..1319ffaf1 100644 --- a/unittests/CppInterOp/InterpreterTest.cpp +++ b/unittests/CppInterOp/InterpreterTest.cpp @@ -117,14 +117,14 @@ TEST(CodeCompletionTest, Sanity) { EXPECT_EQ(cc[1], std::string("foo")); } catch(...) { std::cout << "!!!1\n"; - assert(0 && "!!!1!!!") + assert(0 && "!!!1!!!"); } #else try { EXPECT_ANY_THROW(Cpp::CodeComplete("f", cc)); } catch (...) { std::cout << "!!!2\n"; - assert(0 && "!!!2!!!") + assert(0 && "!!!2!!!"); } #endif }