Parcourir la source

test: minor changes

Michele Caini il y a 3 ans
Parent
commit
5c6a11cb8f
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      test/entt/entity/registry.cpp

+ 3 - 3
test/entt/entity/registry.cpp

@@ -1988,7 +1988,7 @@ TEST(RegistryDeathTest, RuntimePools) {
     ASSERT_DEATH(std::as_const(registry).storage<int>("other"_hs), "");
 }
 
-TEST(Registry, StorageProxy) {
+TEST(Registry, Storage) {
     using namespace entt::literals;
 
     entt::registry registry;
@@ -2015,7 +2015,7 @@ TEST(Registry, StorageProxy) {
     }
 }
 
-TEST(Registry, StorageProxyIterator) {
+TEST(Registry, RegistryStorageIterator) {
     entt::registry registry;
     const auto entity = registry.create();
     registry.emplace<int>(entity);
@@ -2070,7 +2070,7 @@ TEST(Registry, StorageProxyIterator) {
     ASSERT_NE(cit, std::as_const(registry).storage().end());
 }
 
-TEST(Registry, StorageProxyIteratorConversion) {
+TEST(Registry, RegistryStorageIteratorConversion) {
     entt::registry registry;
     const auto entity = registry.create();
     registry.emplace<int>(entity);