From 33202c22f77de09ec5d088c0dba460422ca6bab1 Mon Sep 17 00:00:00 2001 From: Mathis Kelm <mathis.kelm@iws.uni-stuttgart.de> Date: Fri, 24 Mar 2023 06:47:56 +0200 Subject: [PATCH] [test] fix missed tests to use new default-co2-table --- test/material/binarycoefficients/test_binarycoefficients.cc | 2 +- test/material/fluidsystems/test_fluidsystems.cc | 4 ++-- test/multidomain/poromechanics/el2p/properties.hh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/material/binarycoefficients/test_binarycoefficients.cc b/test/material/binarycoefficients/test_binarycoefficients.cc index 99d65c6094..31eaeb7bcf 100644 --- a/test/material/binarycoefficients/test_binarycoefficients.cc +++ b/test/material/binarycoefficients/test_binarycoefficients.cc @@ -39,7 +39,7 @@ #include <dumux/material/binarycoefficients/n2_o2.hh> #include <dumux/material/components/co2.hh> -#include <test/porousmediumflow/co2/co2tables.hh> +#include <dumux/material/components/defaultco2table.hh> template<class Scalar, class BinaryCoefficients> int checkBinaryCoefficients() diff --git a/test/material/fluidsystems/test_fluidsystems.cc b/test/material/fluidsystems/test_fluidsystems.cc index 0c273d18f0..21659c1dd8 100644 --- a/test/material/fluidsystems/test_fluidsystems.cc +++ b/test/material/fluidsystems/test_fluidsystems.cc @@ -61,9 +61,9 @@ #include <dumux/material/fluidstates/saturationoverlay.hh> #include <dumux/material/fluidstates/temperatureoverlay.hh> -// for co2, include the tabulated co2 component and the tables of the co2 test +// for co2, include the tabulated co2 component and the default co2 table #include <dumux/material/components/co2.hh> -#include <test/porousmediumflow/co2/co2tables.hh> +#include <dumux/material/components/defaultco2table.hh> int main() { diff --git a/test/multidomain/poromechanics/el2p/properties.hh b/test/multidomain/poromechanics/el2p/properties.hh index bd82cbbd5a..cf375d5497 100644 --- a/test/multidomain/poromechanics/el2p/properties.hh +++ b/test/multidomain/poromechanics/el2p/properties.hh @@ -36,6 +36,7 @@ #include <dumux/porousmediumflow/problem.hh> #include <dumux/material/components/co2.hh> +#include <dumux/material/components/defaultco2table.hh> #include <dumux/material/fluidsystems/brineco2.hh> #include <dumux/multidomain/traits.hh> @@ -47,7 +48,6 @@ #include "problem_2p.hh" #include "problem_poroelastic.hh" -#include "test/porousmediumflow/co2/co2tables.hh" namespace Dumux::Properties { -- GitLab