From cb4cf4d09045f58dcb6846d650d23fb1285a3025 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sun, 16 Jul 2023 21:51:46 -0600 Subject: [PATCH] Remove redundant type trait tests --- test/Graphics/Texture.test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Graphics/Texture.test.cpp b/test/Graphics/Texture.test.cpp index a4e8aebe..7ea1ea96 100644 --- a/test/Graphics/Texture.test.cpp +++ b/test/Graphics/Texture.test.cpp @@ -14,9 +14,7 @@ TEST_CASE("[Graphics] sf::Texture", runDisplayTests()) { STATIC_CHECK(std::is_copy_constructible_v); STATIC_CHECK(std::is_copy_assignable_v); - STATIC_CHECK(std::is_move_constructible_v); STATIC_CHECK(std::is_nothrow_move_constructible_v); - STATIC_CHECK(std::is_move_assignable_v); STATIC_CHECK(std::is_nothrow_move_assignable_v); STATIC_CHECK(std::is_nothrow_swappable_v); }