Browse Source

test: cleanup

Michele Caini 2 years ago
parent
commit
f01dbd68f3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/entt/entity/storage_no_instance.cpp

+ 2 - 2
test/entt/entity/storage_no_instance.cpp

@@ -33,10 +33,10 @@ struct StorageNoInstance: testing::Test {
 
     static auto push_instance(entt::storage<type> &pool, const entt::entity entt) {
         if constexpr(std::is_void_v<type>) {
-            return pool.entt::sparse_set::push(entt, nullptr);
+            return pool.push(entt, nullptr);
         } else {
             type instance{};
-            return pool.entt::sparse_set::push(entt, &instance);
+            return pool.push(entt, &instance);
         }
     }
 };