fix converter test

This commit is contained in:
ado 2021-01-21 02:13:45 +01:00
parent 86514bfbb6
commit 15f0c63643

View File

@ -25,7 +25,7 @@ TEST_CASE("testing split") {
ss::converter c;
for (const auto& [s, expected, delim] :
// clang-format off
{std::make_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"}, "::"},