From e150d8a41f6dea62b190d25b752e1a2767ef70a4 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Thu, 8 Jul 2021 14:53:12 -0400 Subject: [PATCH] Disable the value check --- src/tests/catch_tests.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/catch_tests.cxx b/src/tests/catch_tests.cxx index 0a6d55f..812cf06 100644 --- a/src/tests/catch_tests.cxx +++ b/src/tests/catch_tests.cxx @@ -365,7 +365,7 @@ TEST_CASE("Test water", "") { double p_withassoc = T*rhomolar*R*(1 + Ar01); CAPTURE(p_withassoc); - REQUIRE(p_withassoc == 3.14); + //REQUIRE(p_withassoc == 3.14); } TEST_CASE("Test water w/ factory", "") { @@ -388,7 +388,7 @@ TEST_CASE("Test water w/ factory", "") { double p_withassoc = T * rhomolar * R * (1 + Ar01); CAPTURE(p_withassoc); - REQUIRE(p_withassoc == 3.14); + //REQUIRE(p_withassoc == 3.14); } TEST_CASE("Check zero(ish)","") { -- GitLab