Fixed: 26 - Sequential Containers

This commit is contained in:
2026-08-16 10:10:37 +03:00
parent 00a5178b01
commit 4314f9126a
3 changed files with 29 additions and 8 deletions
@@ -12,4 +12,5 @@ TEST(SequentialContainers, ListToVector) {
TEST(SequentialContainers, RotateDeque) {
EXPECT_EQ(stl_containers::rotate_deque({1, 2, 3, 4}, 1), (std::deque<int>{2, 3, 4, 1}));
EXPECT_EQ(stl_containers::rotate_deque({1, 2, 3, 4}, 2), (std::deque<int>{3, 4, 1, 2}));
}