mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
drop aliases for Indices entries
using Indices directly more clearly shows where the data comes from without having to hop through hoops to do so.
This commit is contained in:
@@ -177,7 +177,7 @@ BOOST_AUTO_TEST_CASE(TestBehavoir) {
|
||||
const auto& well = wells[0];
|
||||
BOOST_CHECK_EQUAL(well->name(), "PROD1");
|
||||
BOOST_CHECK(well->isProducer());
|
||||
BOOST_CHECK(well->numEq == 3);
|
||||
BOOST_CHECK(StandardWell::Indices::numEq == 3);
|
||||
BOOST_CHECK(well->numStaticWellEq== 4);
|
||||
}
|
||||
|
||||
@@ -186,7 +186,7 @@ BOOST_AUTO_TEST_CASE(TestBehavoir) {
|
||||
const auto& well = wells[1];
|
||||
BOOST_CHECK_EQUAL(well->name(), "INJE1");
|
||||
BOOST_CHECK(well->isInjector());
|
||||
BOOST_CHECK(well->numEq == 3);
|
||||
BOOST_CHECK(StandardWell::Indices::numEq == 3);
|
||||
BOOST_CHECK(well->numStaticWellEq== 4);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user