Skip to content

Commit

Permalink
fix: update needle_options_test
Browse files Browse the repository at this point in the history
  • Loading branch information
SGSSGene committed May 3, 2023
1 parent fcdc4d8 commit fa2cdec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/cli/needle_options_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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{});
Expand Down

0 comments on commit fa2cdec

Please sign in to comment.