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

This commit is contained in:
Michele Caini
2023-10-06 10:30:26 +02:00
parent 283ad71283
commit ae20db416f

View File

@@ -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, );