Browse Source

minor changes

Michele Caini 6 years ago
parent
commit
6402564f44
2 changed files with 2 additions and 2 deletions
  1. 1 1
      test/entt/entity/entity.cpp
  2. 1 1
      test/entt/entity/helper.cpp

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

@@ -4,7 +4,7 @@
 #include <entt/entity/entity.hpp>
 #include <entt/entity/registry.hpp>
 
-TEST(Traits, Null) {
+TEST(Entity, Null) {
     using traits_type = entt::entt_traits<std::underlying_type_t<entt::entity>>;
 
     entt::registry registry{};

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

@@ -80,7 +80,7 @@ TEST(Helper, Dependency) {
     ASSERT_FALSE(registry.has<float>(entity));
 }
 
-TEST(Dependency, MultipleListenersOnTheSameType) {
+TEST(Helper, DependencyWithMultipleListenersOnTheSameType) {
     entt::registry registry;
     entt::connect<double>(registry.on_construct<int>());
     entt::connect<char>(registry.on_construct<int>());