Commit 2f86fb1de0d24abea09a83a560a90cbb7daedc73

Authored by Jarryd Beck
1 parent b091ec31

fix test

Showing 1 changed file with 1 additions and 1 deletions
test/options.cpp
... ... @@ -38,7 +38,7 @@ TEST_CASE("Basic options", "[options]")
38 38 ("long", "a long option")
39 39 ("s,short", "a short option")
40 40 ("value", "an option with a value", cxxopts::value<std::string>())
41   - ("a,av", "a short option with a value");
  41 + ("a,av", "a short option with a value", cxxopts::value<std::string>());
42 42  
43 43 const char* args[] = {
44 44 "tester",
... ...