From 20b647d75e5d3c4ec4f31b3b3fa1c9fa81c891ef Mon Sep 17 00:00:00 2001 From: wlambooy Date: Tue, 14 Jan 2025 16:40:11 +0100 Subject: [PATCH] :adhesive_bandage: Removed dangling `#endif` --- test/algorithms/simulation/sidb/clustercomplete.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/algorithms/simulation/sidb/clustercomplete.cpp b/test/algorithms/simulation/sidb/clustercomplete.cpp index f32a3923b..fdfd7198d 100644 --- a/test/algorithms/simulation/sidb/clustercomplete.cpp +++ b/test/algorithms/simulation/sidb/clustercomplete.cpp @@ -207,9 +207,9 @@ TEMPLATE_TEST_CASE( std::set ground_state{}; std::set charge_index{}; #ifdef NDEBUG - for (auto i = 0; i < 100; i++) -#else // NDEBUG for (auto i = 0; i < 10000; i++) +#else // NDEBUG + for (auto i = 0; i < 100; i++) #endif // NDEBUG { const auto simulation_results = clustercomplete(lyt, params); @@ -221,7 +221,6 @@ TEMPLATE_TEST_CASE( CHECK(ground_state.size() == 1); CHECK(charge_index.size() == 1); } -#endif SECTION("Add SiDBs which are positively charged in the ground state, layout does not fulfill the logic anymore.") {