Browse Source

test: minor changes

Michele Caini 4 years ago
parent
commit
ce21ee6001
1 changed files with 0 additions and 6 deletions
  1. 0 6
      test/entt/signal/dispatcher.cpp

+ 0 - 6
test/entt/signal/dispatcher.cpp

@@ -196,11 +196,5 @@ TEST(Dispatcher, CustomAllocator) {
     dispatcher.enqueue<an_event>();
     dispatcher.enqueue<an_event>();
     decltype(dispatcher) other{std::move(dispatcher), allocator};
     decltype(dispatcher) other{std::move(dispatcher), allocator};
 
 
-    ASSERT_EQ(dispatcher.size(), 0u);
     ASSERT_EQ(other.size<an_event>(), 1u);
     ASSERT_EQ(other.size<an_event>(), 1u);
-
-    dispatcher = std::move(other);
-
-    ASSERT_EQ(dispatcher.size<an_event>(), 1u);
-    ASSERT_EQ(other.size(), 0u);
 }
 }