1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 20:53:52 +00:00

Fix spacing

This commit is contained in:
Henry Fredrick Schreiner 2017-11-21 11:59:57 -05:00 committed by Henry Schreiner
parent 51c32efb7c
commit 512b3604e2

View File

@ -44,11 +44,10 @@ TEST_F(TApp, BasicSubcommands) {
app.reset(); app.reset();
args = {"sub1", "extra"}; args = {"sub1", "extra"};
try { try {
run(); run();
} catch(const CLI::ExtrasError &e) { } catch(const CLI::ExtrasError &e) {
EXPECT_THAT(e.what(), HasSubstr("extra")); EXPECT_THAT(e.what(), HasSubstr("extra"));
} }
} }
TEST_F(TApp, MultiSubFallthrough) { TEST_F(TApp, MultiSubFallthrough) {