summaryrefslogtreecommitdiff
path: root/unittests/ADT/DenseSetTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/ADT/DenseSetTest.cpp')
-rw-r--r--unittests/ADT/DenseSetTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/DenseSetTest.cpp b/unittests/ADT/DenseSetTest.cpp
index a09537a3e990..03738e46be4a 100644
--- a/unittests/ADT/DenseSetTest.cpp
+++ b/unittests/ADT/DenseSetTest.cpp
@@ -181,7 +181,7 @@ TEST(DenseSetCustomTest, ReserveTest) {
EXPECT_EQ(MemorySize, Set.getMemorySize());
// Check that move was called the expected number of times
EXPECT_EQ(Size, CountCopyAndMove::Move);
- // Check that no copy occured
+ // Check that no copy occurred
EXPECT_EQ(0, CountCopyAndMove::Copy);
}
}