diff --git a/test/tuple.cpp b/test/tuple.cpp index b1dcd054..b933d225 100644 --- a/test/tuple.cpp +++ b/test/tuple.cpp @@ -43,12 +43,9 @@ main () } { - using tuple_t = std::tuple; - using mapped_t = typename util::tuple::map::type; + using src_t = std::tuple; + using dst_t = typename util::tuple::map::type; - bool tuple = std::is_same::type, int>::value; - bool mapped = std::is_same::type, int>::value; - - tap.expect (!tuple && mapped, "tuple type mapping"); + tap.expect (std::is_same>::value, "tuple type mapping"); } }