diff --git a/test/test.cpp b/test/test.cpp index 3abd25e..8b67970 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -688,13 +688,10 @@ TEST_CASE("nameof::nameof_type") { #if defined(NAMEOF_TYPE_RTTI_SUPPORTED) && NAMEOF_TYPE_RTTI_SUPPORTED TEST_CASE("NAMEOF_TYPE_RTTI") { #if defined(__clang__) - REQUIRE(NAMEOF_TYPE_RTTI(std::string) == "std::__1::basic_string, std::__1::allocator >"); REQUIRE(NAMEOF_TYPE_RTTI(Color) == "Color"); #elif defined(_MSC_VER) - REQUIRE(NAMEOF_TYPE_RTTI(std::string) == "class std::basic_string,class std::allocator >"); REQUIRE(NAMEOF_TYPE_RTTI(Color) == "enum Color"); #elif defined(__GNUC__) - REQUIRE(NAMEOF_TYPE_RTTI(std::string) == "std::__cxx11::basic_string, std::allocator >"); REQUIRE(NAMEOF_TYPE_RTTI(Color) == "Color"); #endif }