Changed namespace InjectorType -> WellInjector.

This commit is contained in:
Joakim Hove
2014-01-29 13:11:35 +01:00
parent 37084e991d
commit 65e87189e4
6 changed files with 32 additions and 32 deletions

View File

@@ -260,7 +260,7 @@ BOOST_AUTO_TEST_CASE(InjectorType) {
Opm::TimeMapPtr timeMap = createXDaysTimeMap(10);
Opm::Well well("WELL1", 1, 2, 2334.32, timeMap, 0);
well.setInjectorType( 1 , Opm::InjectorType::WATER );
BOOST_CHECK_EQUAL( Opm::InjectorType::WATER , well.getInjectorType( 5 ));
well.setInjectorType( 1 , Opm::WellInjector::WATER );
BOOST_CHECK_EQUAL( Opm::WellInjector::WATER , well.getInjectorType( 5 ));
}