Parcourir la source

test: drop unnecessary NOLINT

Michele Caini il y a 2 ans
Parent
commit
47ab69f394
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      test/entt/container/dense_map.cpp

+ 1 - 1
test/entt/container/dense_map.cpp

@@ -967,7 +967,7 @@ TEST(DenseMap, Indexing) {
 
     ASSERT_TRUE(map.contains(key));
     ASSERT_EQ(map[int{key}], 99);
-    ASSERT_EQ(cmap.at(key), 99); // NOLINT
+    ASSERT_EQ(cmap.at(key), 99);
     ASSERT_EQ(map.at(key), 99);
 }