From 2050f2297ba6a2689ad9bf095d35bdbf827dfae8 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Wed, 17 May 2023 16:11:07 -0400
Subject: [PATCH] Really fix equality test

---
 src/tests/catch_test_multifluid.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/catch_test_multifluid.cxx b/src/tests/catch_test_multifluid.cxx
index 8a2ac7c..884b7c3 100644
--- a/src/tests/catch_test_multifluid.cxx
+++ b/src/tests/catch_test_multifluid.cxx
@@ -412,7 +412,7 @@ TEST_CASE("Check ammonia+argon", "[multifluidArNH3]") {
 //    std::cout << mix.dump(1) << std::endl;
     CHECK(!mix.empty());
     CAPTURE(mix.dump(1));
-    CHECK(p_MPa != Approx(129.07019029846455).margin(1e-3));
+    CHECK(p_MPa == Approx(129.07019029846455).margin(1e-3));
 }
 
 
-- 
GitLab