diff --git a/test/test_converter.cpp b/test/test_converter.cpp index 8af8f74..b372f10 100644 --- a/test/test_converter.cpp +++ b/test/test_converter.cpp @@ -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"}, "::"},