Skip to content

Commit dbd9b7a

Browse files
committed
added test
1 parent 8e6a626 commit dbd9b7a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/test_interpreter.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -879,9 +879,8 @@ TEST_SUITE("xinspect"){
879879
}
880880

881881
TEST_CASE("find_type_slow"){
882-
expression = "std::vector<int>";
883-
result = xcpp::find_type_slow(expression);
884-
std::cout << result << std::endl;
882+
std::string expression = "std::vector<int>";
883+
std::string result = xcpp::find_type_slow(expression);
885884
REQUIRE(result == "<unnamed>");
886885
}
887886

0 commit comments

Comments
 (0)