From f2812754bfafb2feb20644832b010a52cd0cd4c4 Mon Sep 17 00:00:00 2001 From: cont-integration <CI@iri.upc.edu> Date: Fri, 5 Jul 2024 13:15:40 +0200 Subject: [PATCH] [skip ci] applied clang format --- test/gtest_schema.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/gtest_schema.cpp b/test/gtest_schema.cpp index 5125fd00d..d6619ff2e 100644 --- a/test/gtest_schema.cpp +++ b/test/gtest_schema.cpp @@ -125,7 +125,7 @@ TEST(Schema, validate_all_schemas) TEST(Schema, duplicated_schemas) { std::map<std::string, std::string> schemas_found; - unsigned int n_duplicated = 0; + unsigned int n_duplicated = 0; for (auto const& entry : filesystem::recursive_directory_iterator(wolf_dir)) { if (filesystem::is_regular_file(entry) and entry.path().extension().string() == ".schema") @@ -142,7 +142,8 @@ TEST(Schema, duplicated_schemas) } ASSERT_EQ(n_duplicated, 0); WOLF_INFO_COND(n_duplicated == 0, "Found ", schemas_found.size(), " schema files."); - WOLF_ERROR_COND(n_duplicated != 0, "Found ", n_duplicated, " duplicated schemas in ", schemas_found.size(), " schema files."); + WOLF_ERROR_COND( + n_duplicated != 0, "Found ", n_duplicated, " duplicated schemas in ", schemas_found.size(), " schema files."); } int main(int argc, char** argv) -- GitLab