From 7717a8850eab90963402d417736e89f7b115de30 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 17 May 2019 00:40:55 +0200 Subject: [PATCH] Grouped expression to make catch-1.2 happy. --- tests/test_parse_options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_parse_options.cpp b/tests/test_parse_options.cpp index 34451d8..4571b99 100644 --- a/tests/test_parse_options.cpp +++ b/tests/test_parse_options.cpp @@ -130,7 +130,7 @@ SCENARIO ("The option parser works correctly") { REQUIRE_FALSE(exception); REQUIRE(opts.status_code == 0); - REQUIRE(opts.tags == vector{ "tag1", longstring, "tag3" }); + REQUIRE((opts.tags == vector{ "tag1", longstring, "tag3" })); REQUIRE(opts.uri == uri); } }