diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_mixramp.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/test_mixramp.cxx b/test/test_mixramp.cxx index 7ed250717..74d49dd87 100644 --- a/test/test_mixramp.cxx +++ b/test/test_mixramp.cxx @@ -22,7 +22,9 @@ public: const char *input = "1.0 0.00;3.0 0.10;6.0 2.50;"; char *foo = strdup(input); - CPPUNIT_ASSERT(!std::isnan(mixramp_interpolate(foo, 0))); + CPPUNIT_ASSERT_DOUBLES_EQUAL(double(0), + mixramp_interpolate(foo, 0), + 0.05); free(foo); foo = strdup(input); @@ -41,10 +43,6 @@ public: free(foo); foo = strdup(input); - CPPUNIT_ASSERT(!std::isnan(mixramp_interpolate(foo, 3))); - free(foo); - - foo = strdup(input); CPPUNIT_ASSERT(std::isnan(mixramp_interpolate(foo, 6.1))); free(foo); |