diff --git a/tests/test_eclblackoilfluidsystem.cpp b/tests/test_eclblackoilfluidsystem.cpp index 8dab3e0a5..3919921a1 100644 --- a/tests/test_eclblackoilfluidsystem.cpp +++ b/tests/test_eclblackoilfluidsystem.cpp @@ -43,6 +43,7 @@ #include #include #include +#include #include @@ -631,8 +632,9 @@ inline void testAll() Opm::Parser parser; auto deck = parser.parseString(deckString1); + Opm::Python python; Opm::EclipseState eclState(deck); - Opm::Schedule schedule(deck, eclState); + Opm::Schedule schedule(deck, eclState, python); FluidSystem::initFromState(eclState, schedule); diff --git a/tests/test_eclblackoilpvt.cpp b/tests/test_eclblackoilpvt.cpp index 67163a32e..91154cf92 100644 --- a/tests/test_eclblackoilpvt.cpp +++ b/tests/test_eclblackoilpvt.cpp @@ -50,6 +50,7 @@ #include #include #include +#include #include @@ -223,10 +224,11 @@ inline void testAll() static const Scalar tolerance = std::numeric_limits::epsilon()*1e3; Opm::Parser parser; + Opm::Python python; auto deck = parser.parseString(deckString1); Opm::EclipseState eclState(deck); - Opm::Schedule schedule(deck, eclState); + Opm::Schedule schedule(deck, eclState, python); const auto& pvtwKeyword = deck.getKeyword("PVTW"); size_t numPvtRegions = pvtwKeyword.size(); diff --git a/tests/test_fluidsystems.cpp b/tests/test_fluidsystems.cpp index 122fffa23..2862b3240 100644 --- a/tests/test_fluidsystems.cpp +++ b/tests/test_fluidsystems.cpp @@ -57,6 +57,9 @@ // include the tables for CO2 which are delivered with opm-material by default #include +#include + + namespace Opm { namespace FluidSystemsTest { #include @@ -72,9 +75,10 @@ void ensureBlackoilApi() // that they compile while (false) { #if HAVE_ECL_INPUT + Opm::Python python; Opm::Deck deck; Opm::EclipseState eclState(deck); - Opm::Schedule schedule(deck, eclState); + Opm::Schedule schedule(deck, eclState, python); FluidSystem::initFromState(eclState, schedule); #endif