From 0ca1f7a8b24bbb378d3ee5ead06d1c53095fdd5c Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Fri, 8 Oct 2021 15:23:03 +0200 Subject: [PATCH] WellTestState::updateWells -> WellTestState::test_wells --- opm/simulators/wells/BlackoilWellModel_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opm/simulators/wells/BlackoilWellModel_impl.hpp b/opm/simulators/wells/BlackoilWellModel_impl.hpp index df698daef..2a2e26897 100644 --- a/opm/simulators/wells/BlackoilWellModel_impl.hpp +++ b/opm/simulators/wells/BlackoilWellModel_impl.hpp @@ -385,7 +385,7 @@ namespace Opm { const auto& wtest_config = schedule()[timeStepIdx].wtest_config(); if (!wtest_config.empty()) { // there is a WTEST request const std::vector wellsForTesting = wellTestState() - .updateWells(wtest_config, simulationTime); + .test_wells(wtest_config, simulationTime); for (const std::string& well_name : wellsForTesting) { const auto& ws = this->wellState().well(well_name);