Explorar el Código

test: minor changes

Michele Caini hace 3 años
padre
commit
5c6a11cb8f
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  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);