Fix test.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2020-07-14 17:55:35 +02:00
parent 047cdc7295
commit b1f57ee354
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ SCENARIO("string_to_vector()")
AND_THEN(R"(vector is {"a", "b", "c", "d", "e"})")
{
REQUIRE_FALSE(exception);
REQUIRE(vec == vector<string>{"a", "b", "c", "d", "e"});
REQUIRE(vec == vector<string>({"a", "b", "c", "d", "e"}));
}
}
}