Skip to content

Commit 8e6a626

Browse files
committed
added test for find_type_slow
1 parent 5337d4c commit 8e6a626

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/test_interpreter.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -879,12 +879,6 @@ TEST_SUITE("xinspect"){
879879
}
880880

881881
TEST_CASE("find_type_slow"){
882-
std::string expression = "int";
883-
std::string result = xcpp::find_type_slow(expression);
884-
std::cout << result << std::endl;
885-
bool res = (result == "<unnamed>" || result == "");
886-
REQUIRE(res);
887-
888882
expression = "std::vector<int>";
889883
result = xcpp::find_type_slow(expression);
890884
std::cout << result << std::endl;

0 commit comments

Comments
 (0)