replace tuple constructor with make_tuple in converter test

This commit is contained in:
ado 2021-01-21 02:09:51 +01:00
parent c28e777872
commit 86514bfbb6

View File

@ -25,7 +25,7 @@ TEST_CASE("testing split") {
ss::converter c;
for (const auto& [s, expected, delim] :
// clang-format off
{std::tuple{"a,b,c,d", std::vector{"a", "b", "c", "d"}, ","},
{std::make_tuple{"a,b,c,d", std::vector{"a", "b", "c", "d"}, ","},
{"", {}, " "},
{" x x x x | x ", {" x x x x ", " x "}, "|"},
{"a::b::c::d", {"a", "b", "c", "d"}, "::"},