summaryrefslogtreecommitdiff
path: root/unittests/ADT/SmallVectorTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--unittests/ADT/SmallVectorTest.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/unittests/ADT/SmallVectorTest.cpp b/unittests/ADT/SmallVectorTest.cpp
index 0ecb798779..90c7982699 100644
--- a/unittests/ADT/SmallVectorTest.cpp
+++ b/unittests/ADT/SmallVectorTest.cpp
@@ -338,17 +338,6 @@ TYPED_TEST(SmallVectorTest, AssignTest) {
this->assertValuesInOrder(this->theVector, 2u, 77, 77);
}
-TYPED_TEST(SmallVectorTest, AssignIterPair) {
- SCOPED_TRACE("AssignIterPair");
-
- std::vector<int> v;
- v.push_back(1);
- v.push_back(2);
- this->theVector.push_back(Constructable(1));
- this->theVector.assign(v.begin(), v.end());
- this->assertValuesInOrder(this->theVector, 2u, 1, 2);
-}
-
// Erase a single element
TYPED_TEST(SmallVectorTest, EraseTest) {
SCOPED_TRACE("EraseTest");