diff --git a/test/cli/needle_options_test.cpp b/test/cli/needle_options_test.cpp index 221facc..0cddff2 100644 --- a/test/cli/needle_options_test.cpp +++ b/test/cli/needle_options_test.cpp @@ -23,9 +23,9 @@ TEST_F(needle_options_test, fail_no_argument) cli_test_result result = execute_app("needle", "-v"); std::string expected { - "Error. Incorrect command. See needle help for more information.You either forgot or misspelled the subcommand!" - " Please specify which sub-program you want to use: one of [count,estimate,genome,ibf,ibfmin,minimiser]. " - "Use -h/--help for more information.\n" + "Error. Incorrect command. See needle help for more information.You misspelled the subcommand!" + " Please specify which sub-program you want to use: one of [count, estimate, genome, ibf, ibfmin, minimiser]." + " Use -h/--help for more information.\n" }; EXPECT_NE(result.exit_code, 0); EXPECT_EQ(result.out, std::string{});