Skip to content

Commit

Permalink
Update test_lambda_double.cpp
Browse files Browse the repository at this point in the history
Add missing REQUIRE(...) in test.
  • Loading branch information
bjodah committed Mar 19, 2024
1 parent b3b9b43 commit 2bac234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symengine/tests/eval/test_lambda_double.cpp
Expand Up @@ -281,7 +281,7 @@ TEST_CASE("Evaluate functions", "[lambda_gamma]")
v.init({}, *Nan);
REQUIRE(std::isnan(v.call({})));
v.init({}, *Inf);
std::isinf(v.call({}));
REQUIRE(std::isinf(v.call({})));
v.init({}, *NegInf);
REQUIRE(std::isinf(v.call({})));
}
Expand Down

0 comments on commit 2bac234

Please sign in to comment.