aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/core/test/firebase/firestore/model/resource_path_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Firestore/core/test/firebase/firestore/model/resource_path_test.cc')
-rw-r--r--Firestore/core/test/firebase/firestore/model/resource_path_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/core/test/firebase/firestore/model/resource_path_test.cc b/Firestore/core/test/firebase/firestore/model/resource_path_test.cc
index 637e78e..8545884 100644
--- a/Firestore/core/test/firebase/firestore/model/resource_path_test.cc
+++ b/Firestore/core/test/firebase/firestore/model/resource_path_test.cc
@@ -47,7 +47,7 @@ TEST(ResourcePath, Constructor) {
EXPECT_EQ(path_from_list, copied);
const ResourcePath moved = std::move(copied);
EXPECT_EQ(path_from_list, moved);
- EXPECT_NE(copied, moved);
+ EXPECT_NE(copied, moved); // NOLINT: use after move intended
EXPECT_EQ(empty_path, copied);
}