Skip to content

Commit c77da6f

Browse files
authored
[ADT] Fix MappedIteratorTest. (llvm#67337)
Caught on builds with expensive and _GLIBCXX_DEBUG checks enabled. See related discussion in <https://reviews.llvm.org/D134675#inline-1472177>.
1 parent 4cd3741 commit c77da6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/unittests/ADT/MappedIteratorTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ TYPED_TEST(MappedIteratorTestBasic, MoveAssign) {
174174

175175
I3 = std::move(I2);
176176

177-
EXPECT_EQ(I2, I1) << "move assigned iterator is a different position";
177+
EXPECT_EQ(I3, I1) << "move assigned iterator is a different position";
178178
}
179179
}
180180

0 commit comments

Comments
 (0)