Skip to content

Commit

Permalink
cli_TEST: print help to fix nodiscard warning
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Jan 10, 2025
1 parent 6e8fead commit 9cda1b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/cli_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ TEST(cli, options)
});

app.formatter(std::make_shared<GzFormatter>(&app));
EXPECT_NO_THROW(app.help());
EXPECT_NO_THROW(std::cout << app.help());
EXPECT_NO_THROW(app.parse(argv));
}

Expand Down

0 comments on commit 9cda1b3

Please sign in to comment.