summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-08-02 08:59:26 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-08-02 08:59:26 +0200
commit4e593006503fce1ef12a6eb3390c65e01256e766 (patch)
treee90671c0a9e56b55f8e06ca4e62c408e8c901975 /AK
parent5e01ebfc56b058a4431c5a69a3c4cdd3f7adbed7 (diff)
downloadserenity-4e593006503fce1ef12a6eb3390c65e01256e766.zip
AK: Fix typo in TestVector.cpp, oops.
Diffstat (limited to 'AK')
-rw-r--r--AK/Tests/TestVector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Tests/TestVector.cpp b/AK/Tests/TestVector.cpp
index 1b89c68ee8..c2a5736f85 100644
--- a/AK/Tests/TestVector.cpp
+++ b/AK/Tests/TestVector.cpp
@@ -127,7 +127,7 @@ TEST_CASE(prepend_vector_object)
more_objects.empend(make<SubObject>(4));
more_objects.empend(make<SubObject>(5));
more_objects.empend(make<SubObject>(6));
- EXPECT_EQ(more_objects.size(), 4);
+ EXPECT_EQ(more_objects.size(), 3);
objects.prepend(move(more_objects));
EXPECT_EQ(more_objects.size(), 0);