From 1ff2db8aa290cad41e48e0b94a494bbf1652f8ca Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Mon, 8 Jan 2024 14:25:03 +0100 Subject: [PATCH] test: drop unnecessary checks --- test/entt/entity/runtime_view.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/entt/entity/runtime_view.cpp b/test/entt/entity/runtime_view.cpp index 652894278..38428032b 100644 --- a/test/entt/entity/runtime_view.cpp +++ b/test/entt/entity/runtime_view.cpp @@ -90,7 +90,6 @@ TYPED_TEST(RuntimeView, Constructors) { const runtime_view_type other{std::move(temp), view.get_allocator()}; ASSERT_TRUE(view.contains(entity)); - ASSERT_FALSE(temp.contains(entity)); // NOLINT ASSERT_TRUE(other.contains(entity)); } @@ -140,7 +139,6 @@ TYPED_TEST(RuntimeView, Move) { runtime_view_type other{std::move(view)}; - ASSERT_FALSE(view.contains(entity)); // NOLINT ASSERT_TRUE(other.contains(entity)); view = other; @@ -151,7 +149,6 @@ TYPED_TEST(RuntimeView, Move) { other = std::move(view); - ASSERT_FALSE(view.contains(entity)); // NOLINT ASSERT_TRUE(other.contains(entity)); }