From 11326ac766db5dc1e00f97cb3bc2fad0cca736d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C5=A0till?= Date: Thu, 2 Jan 2025 20:11:53 +0100 Subject: [PATCH] Clang-format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Vladimír Štill --- test/gtest/indexed_vector.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/test/gtest/indexed_vector.cpp b/test/gtest/indexed_vector.cpp index 7d8bcad26a..87bec5106a 100644 --- a/test/gtest/indexed_vector.cpp +++ b/test/gtest/indexed_vector.cpp @@ -96,14 +96,15 @@ TEST(IndexedVector, Vector_ctor) { } TEST(IndexedVector, erase) { - TestVector vec(Vector{testItem("a"_cs), - testItem("b"_cs), - testItem("c"_cs), - testItem("d"_cs), - testItem("e"_cs), - testItem("f"_cs), - testItem("g"_cs), - }); + TestVector vec(Vector{ + testItem("a"_cs), + testItem("b"_cs), + testItem("c"_cs), + testItem("d"_cs), + testItem("e"_cs), + testItem("f"_cs), + testItem("g"_cs), + }); EXPECT_EQ(vec.size(), 7); vec.erase(std::next(vec.begin(), 1)); // a c d e f g EXPECT_EQ(vec.size(), 6);