From a65c7e93a90cbb8430ed6b69aa1f2539cad73f04 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Thu, 25 Jul 2024 14:25:08 +0200 Subject: [PATCH] Fix indentation. --- tests/unit/test_high_five_selection.cpp | 30 ++++++++++++------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tests/unit/test_high_five_selection.cpp b/tests/unit/test_high_five_selection.cpp index e3b91e4cc..586af0b17 100644 --- a/tests/unit/test_high_five_selection.cpp +++ b/tests/unit/test_high_five_selection.cpp @@ -415,33 +415,33 @@ std::vector make_irregular_hyperslab_test_data() { // xor, irregular auto slab_ab_xor = HyperSlab(slabs["a"]) ^ slabs["b"]; // clang-format off - auto answer_ab_xor = IrregularHyperSlabAnswer{{ - {1ul, 1ul}, {1ul, 2ul}, - {2ul, 0ul}, {2ul, 2ul}, - {3ul, 1ul}, {3ul, 2ul} - }}; + auto answer_ab_xor = IrregularHyperSlabAnswer{{ + {1ul, 1ul}, {1ul, 2ul}, + {2ul, 0ul}, {2ul, 2ul}, + {3ul, 1ul}, {3ul, 2ul} + }}; // clang-format on test_data.push_back({"a xor b", slab_ab_xor, answer_ab_xor}); // (not a) and e, irregular auto slab_ab_nota = HyperSlab(slabs["a"]).notA(slabs["b"]); // clang-format off - auto answer_ab_nota = IrregularHyperSlabAnswer{{ - {1ul, 1ul}, {1ul, 2ul}, - {2ul, 2ul}, - {3ul, 1ul}, {3ul, 2ul} - }}; + auto answer_ab_nota = IrregularHyperSlabAnswer{{ + {1ul, 1ul}, {1ul, 2ul}, + {2ul, 2ul}, + {3ul, 1ul}, {3ul, 2ul} + }}; // clang-format on test_data.push_back({"a nota b", slab_ab_nota, answer_ab_nota}); // (not a) and e, irregular auto slab_ba_notb = HyperSlab(slabs["b"]).notB(slabs["a"]); // clang-format off - auto answer_ba_notb = IrregularHyperSlabAnswer{{ - {1ul, 1ul}, {1ul, 2ul}, - {2ul, 2ul}, - {3ul, 1ul}, {3ul, 2ul} - }}; + auto answer_ba_notb = IrregularHyperSlabAnswer{{ + {1ul, 1ul}, {1ul, 2ul}, + {2ul, 2ul}, + {3ul, 1ul}, {3ul, 2ul} + }}; // clang-format on test_data.push_back({"b notb a", slab_ba_notb, answer_ba_notb});