Skip to content
Snippets Groups Projects
Commit b713d862 authored by Oliver Heidmann's avatar Oliver Heidmann
Browse files

fixed bandit tests: forgotten removal of extra parameter

parent ea424995
No related branches found
No related tags found
1 merge request!110M300433/develop2
......@@ -92,7 +92,7 @@ checkNegative(std::string description, std::vector<std::string> in,
std::string expected_err_msg)
{
bandit::it(description, [&, in]() {
AssertThrows(CdoSyntaxError, Parser::_parse(in, process_inq_prompt));
AssertThrows(CdoSyntaxError, Parser::_parse(in));
AssertThat(LastException<CdoSyntaxError>().what(),
Contains(expected_err_msg));
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment