aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor C. Richberger <taywee@gmx.com>2017-11-19 14:09:05 -0700
committerGitHub <noreply@github.com>2017-11-19 14:09:05 -0700
commit184a6beb581448a84720ed6f74c6a04558e2aaa2 (patch)
treeb2f41f439ac68081cb614e1c863ac3f48585fe49
parentMerge branch 'master' into better-value-parsing (diff)
downloadargs.hxx-184a6beb581448a84720ed6f74c6a04558e2aaa2.tar.xz
Fix broken test
I dropped a closing brace by mistake when merging
-rw-r--r--test.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/test.cxx b/test.cxx
index 46a7b4c..97d2c37 100644
--- a/test.cxx
+++ b/test.cxx
@@ -1097,6 +1097,7 @@ TEST_CASE("ValueParser works as expected", "[args]")
REQUIRE_NOTHROW(p.ParseArgs(std::vector<std::string>{"-i", " 12"}));
REQUIRE(args::get(i) == 12);
+}
TEST_CASE("ActionFlag works as expected", "[args]")
{