From 7afb963fdd053ca9c697e3826345ed5abd7b81b1 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Thu, 8 Feb 2018 17:07:32 +0100 Subject: [PATCH] change gridManager -> vanguard in new file test_ecl_output.cpp --- tests/test_ecl_output.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_ecl_output.cpp b/tests/test_ecl_output.cpp index b6e65b877..ba6117800 100644 --- a/tests/test_ecl_output.cpp +++ b/tests/test_ecl_output.cpp @@ -115,10 +115,10 @@ void test_summary() const std::string casename = "summary_deck_non_constant_porosity"; auto simulator = initSimulator(filename.data()); - typedef typename GET_PROP_TYPE(TypeTag, GridManager) GridManager; + typedef typename GET_PROP_TYPE(TypeTag, Vanguard) Vanguard; typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; - typedef Ewoms::CollectDataToIORank< GridManager > CollectDataToIORankType; - CollectDataToIORankType collectToIORank(simulator->gridManager()); + typedef Ewoms::CollectDataToIORank< Vanguard > CollectDataToIORankType; + CollectDataToIORankType collectToIORank(simulator->vanguard()); Ewoms::EclOutputBlackOilModule eclOutputModule(*simulator, collectToIORank); typedef Ewoms::EclWriter EclWriterType;