rename extrapolate to explicit_loopup in vfpexp

This commit is contained in:
Tor Harald Sandve
2022-04-12 09:03:29 +02:00
parent 35835efbbe
commit 09f80a3da1
3 changed files with 10 additions and 10 deletions

View File

@@ -5116,11 +5116,11 @@ END
const auto& wvfpexp1 = well1.getWVFPEXP();
const auto& wvfpexp2 = well2.getWVFPEXP();
BOOST_CHECK(!wvfpexp1.extrapolate());
BOOST_CHECK(!wvfpexp1.explicit_lookup());
BOOST_CHECK(!wvfpexp1.shut());
BOOST_CHECK(!wvfpexp1.prevent());
BOOST_CHECK(wvfpexp2.extrapolate());
BOOST_CHECK(wvfpexp2.explicit_lookup());
BOOST_CHECK(wvfpexp2.shut());
BOOST_CHECK(wvfpexp2.prevent());
}