This commit is contained in:
Pietro Cerutti 2015-10-02 18:08:52 +00:00
parent 15317632f3
commit 4d123dbf90

View File

@ -51,7 +51,7 @@ SCENARIO( "Vector resizing affects size and capacity", "[vector][bdd][size][capa
v.reserve( 10 );
THEN( "The capacity is increased but the size remains the same" ) {
REQUIRE( v.capacity() >= 10 );
REQUIRE( v.size() == 0 );
REQUIRE( v.size() == 5 );
}
}
}