aboutsummaryrefslogtreecommitdiff
path: root/libs/kstd
diff options
context:
space:
mode:
Diffstat (limited to 'libs/kstd')
-rw-r--r--libs/kstd/tests/src/vector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/kstd/tests/src/vector.cpp b/libs/kstd/tests/src/vector.cpp
index b826820..97460b4 100644
--- a/libs/kstd/tests/src/vector.cpp
+++ b/libs/kstd/tests/src/vector.cpp
@@ -932,7 +932,7 @@ SCENARIO("Vector with non-default-constructible types", "[vector]")
THEN("the element is added and the size and capacity increase")
{
REQUIRE(v.size() == 1);
- REQUIRE(v.back() == kstd::tests::non_default_constructible{42});
+ REQUIRE(v.back() == kstd::tests::non_default_constructible{40});
}
}
}