From b1f57ee354da2c225cc71465a3592b771393b68c Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 14 Jul 2020 17:55:35 +0200 Subject: [PATCH] Fix test. --- tests/test_string_to_vector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_string_to_vector.cpp b/tests/test_string_to_vector.cpp index f1acd19..f6c1457 100644 --- a/tests/test_string_to_vector.cpp +++ b/tests/test_string_to_vector.cpp @@ -144,7 +144,7 @@ SCENARIO("string_to_vector()") AND_THEN(R"(vector is {"a", "b", "c", "d", "e"})") { REQUIRE_FALSE(exception); - REQUIRE(vec == vector{"a", "b", "c", "d", "e"}); + REQUIRE(vec == vector({"a", "b", "c", "d", "e"})); } } }