Explorar el Código

test: avoid testing entt::entity like types more than once with the sparse set

Michele Caini hace 2 años
padre
commit
ae20db416f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      test/entt/entity/sparse_set.cpp

+ 1 - 1
test/entt/entity/sparse_set.cpp

@@ -45,7 +45,7 @@ struct SparseSet: testing::Test {
 template<typename Type>
 using SparseSetDeathTest = SparseSet<Type>;
 
-using SparseSetTypes = ::testing::Types<entt::entity, entity32_t, entity64_t, entity32_18_14_t>;
+using SparseSetTypes = ::testing::Types<entity32_t, entity64_t, entity32_18_14_t>;
 
 TYPED_TEST_SUITE(SparseSet, SparseSetTypes, );
 TYPED_TEST_SUITE(SparseSetDeathTest, SparseSetTypes, );