Skip to content

Commit 323b2d4

Browse files
committed
fixed TestExpression tests
1 parent c67ebd4 commit 323b2d4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

cucumber_cpp/library/cucumber_expression/test/TestExpression.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,7 @@ namespace cucumber_cpp::library::cucumber_expression
9191
const auto& match = *matchOpt;
9292
for (std::size_t i = 0; i < testdata["expected_args"].size(); ++i)
9393
{
94-
if (file.ends_with("matches-single-quoted-empty-string-as-empty-string.yaml"))
95-
std::cout << "testme";
96-
9794
const auto& argument = match[i];
98-
const auto actualValue = argument.Name() == "string" ? argument.GetValue<std::string>() : argument.Group().value.value();
99-
const auto expectedValue = testdata["expected_args"][i].as<std::string>();
10095

10196
if (argument.Name() == "")
10297
EXPECT_THAT(argument.GetValue<std::string>(), testdata["expected_args"][i].as<std::string>()) << FormatMessage(file, testdata, expression);

0 commit comments

Comments
 (0)