From 808573ac16225ef8d45a35d05f5427f9eb33db80 Mon Sep 17 00:00:00 2001 From: Alexander Blanchette Date: Tue, 30 Jan 2024 13:25:45 -0800 Subject: [PATCH] Ran clang-format on src/tests/geometry.cpp --- src/tests/geometry.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tests/geometry.cpp b/src/tests/geometry.cpp index def37b5..c8b1fce 100644 --- a/src/tests/geometry.cpp +++ b/src/tests/geometry.cpp @@ -57,10 +57,10 @@ TEST_CASE("Geometric Operations: Coordinates: Getters") { } TEST_CASE("Geometric Operations: Points") { - REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.latitude.degrees() - == 90.0); - REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.latitude.radians() - == std::numbers::pi_v / 2.0); + REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.latitude.degrees() == + 90.0); + REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.latitude.radians() == + std::numbers::pi_v / 2.0); REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.longitude.degrees() == 0); REQUIRE(point{coord{90.0, true}, coord{0.0, true}}.longitude.radians() == 0); }