Browse Source

test: avoid short names

Michele Caini 1 year ago
parent
commit
b331e88b8a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      test/entt/entity/group.cpp

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

@@ -1467,10 +1467,10 @@ TEST(OwningGroup, PreventEarlyOptOut) {
     registry.emplace<int>(entity, 2);
 
     // thanks to @pgruenbacher for pointing out this corner case
-    registry.group<char, int>().each([entity](const auto entt, const auto &c, const auto &i) {
+    registry.group<char, int>().each([entity](const auto entt, const auto &cv, const auto &iv) {
         ASSERT_EQ(entity, entt);
-        ASSERT_EQ(c, 'c');
-        ASSERT_EQ(i, 2);
+        ASSERT_EQ(cv, 'c');
+        ASSERT_EQ(iv, 2);
     });
 }