aboutsummaryrefslogtreecommitdiff
path: root/test/unit/pj_phi2_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/pj_phi2_test.cpp')
-rw-r--r--test/unit/pj_phi2_test.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/unit/pj_phi2_test.cpp b/test/unit/pj_phi2_test.cpp
index f344a3d0..fdedae98 100644
--- a/test/unit/pj_phi2_test.cpp
+++ b/test/unit/pj_phi2_test.cpp
@@ -39,15 +39,14 @@ namespace {
TEST(PjPhi2Test, Basic) {
projCtx ctx = pj_get_default_ctx();
- // Remove tests with |e| >= 1. Expectation is that only sane values of e
- // (and nan is here reckoned to be sane) are passed to pj_phi2. Thus the
- // return value with other values of e is "implementation dependent".
+ // Expectation is that only sane values of e (and nan is here reckoned to
+ // be sane) are passed to pj_phi2. Thus the return value with other values
+ // of e is "implementation dependent".
constexpr auto inf = std::numeric_limits<double>::infinity();
constexpr auto nan = std::numeric_limits<double>::quiet_NaN();
- // Use EXPECT_EQ instead of EXPECT_DOUBLE_EQ. Strict equality is demanded
- // here.
+ // Strict equality is demanded here.
EXPECT_EQ( M_PI_2, pj_phi2(ctx, +0.0, 0.0));
EXPECT_EQ( 0.0 , pj_phi2(ctx, 1.0, 0.0));
EXPECT_EQ(-M_PI_2, pj_phi2(ctx, inf, 0.0));