From d1f5abb69da21ff89660f8b97d09e5513e539049 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Sat, 8 May 2021 16:06:28 -0400 Subject: [PATCH] Fix CPA test (refactor) --- src/tests/catch_tests.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/catch_tests.cxx b/src/tests/catch_tests.cxx index 0845f65..6904527 100644 --- a/src/tests/catch_tests.cxx +++ b/src/tests/catch_tests.cxx @@ -326,7 +326,7 @@ TEST_CASE("Test water", "") { std::valarray<double> epsAB = { 16655 }, betaAB = { 0.0692 }; CPA::CPAAssociation cpaa(std::move(cub), schemes, epsAB, betaAB); - CPA::CPA cpa(std::move(cub), std::move(cpaa)); + CPA::CPAEOS cpa(std::move(cub), std::move(cpaa)); using tdc = TDXDerivatives<decltype(cpa)>; auto Ar01 = tdc::get_Ar01(cpa, T, rhomolar, z); double p_withassoc = T*rhomolar*R*(1 + Ar01); -- GitLab