Skip to content

Commit ef12ae4

Browse files
committed
Corrected UT for tuple transformation
1 parent 9f5654f commit ef12ae4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/static_tests/functional/tuple_transform.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ TEST_CASE("tuple_helper static") {
5151
std::array<int, 2>{1, 2});
5252
STATIC_REQUIRE(create_from_tuple<std::tuple>(std::make_tuple(1, 2), polyfill::identity{}) ==
5353
std::tuple<int, int>{1, 2});
54-
STATIC_REQUIRE(create_from_tuple<std::array>(std::make_tuple(1, 2), polyfill::identity{}) ==
55-
std::array<int, 2>{1, 2});
5654
#endif
5755
#if defined(SQLITE_ORM_FOLD_EXPRESSIONS_SUPPORTED) && (__cpp_lib_constexpr_functional >= 201907L)
5856
STATIC_REQUIRE(recombine_tuple(tuple_maker{}, std::make_tuple(1, 2), polyfill::identity{}, 3) ==

0 commit comments

Comments
 (0)