Skip to content

Commit

Permalink
Try to fix CC test 6
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-penev committed Apr 30, 2024
1 parent 64575d2 commit 3ae810c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unittests/CppInterOp/InterpreterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 3ae810c

Please sign in to comment.