Skip to content

Commit

Permalink
Ran clang-format on src/tests/geometry.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
arbCoding committed Jan 30, 2024
1 parent ee32ac7 commit 808573a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/tests/geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<double> / 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<double> / 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);
}
Expand Down

0 comments on commit 808573a

Please sign in to comment.