From c64f392dc35f6a25f05c6be54a429409467dbbcb Mon Sep 17 00:00:00 2001 From: Chip Hogg Date: Mon, 10 Jan 2022 14:23:44 -0500 Subject: [PATCH] Remove some extra spaces --- test/unit_test/runtime/magnitude_test.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/unit_test/runtime/magnitude_test.cpp b/test/unit_test/runtime/magnitude_test.cpp index c0c8cb2e..536f8fed 100644 --- a/test/unit_test/runtime/magnitude_test.cpp +++ b/test/unit_test/runtime/magnitude_test.cpp @@ -245,12 +245,12 @@ TEST_CASE("Prime helper functions") TEST_CASE("Prime factorization") { - SECTION ("1 factors into the null magnitude") + SECTION("1 factors into the null magnitude") { CHECK(prime_factorization_v<1> == magnitude<>{}); } - SECTION ("Prime numbers factor into themselves") + SECTION("Prime numbers factor into themselves") { CHECK(prime_factorization_v<2> == magnitude{}); CHECK(prime_factorization_v<3> == magnitude{}); @@ -353,19 +353,19 @@ TEST_CASE("pairwise_all evaluates all pairs") TEST_CASE("strictly_increasing") { - SECTION ("Empty input is sorted") + SECTION("Empty input is sorted") { CHECK(strictly_increasing()); } - SECTION ("Single-element input is sorted") + SECTION("Single-element input is sorted") { CHECK(strictly_increasing(3)); CHECK(strictly_increasing(15.42)); CHECK(strictly_increasing('c')); } - SECTION ("Multi-value inputs compare correctly") + SECTION("Multi-value inputs compare correctly") { CHECK(strictly_increasing(3, 3.14)); CHECK(!strictly_increasing(3, 3.0));