Refactored EclipseState.getEclipseGrid to getInputGrid

This commit is contained in:
Pål Grønås Drange
2016-04-19 13:05:56 +02:00
parent aaf0a2fcbc
commit 444f74642c
12 changed files with 78 additions and 56 deletions

View File

@@ -188,7 +188,7 @@ BOOST_AUTO_TEST_CASE(CreateSchedule) {
DeckPtr deck = createDeck();
EclipseState state(deck , ParseContext());
ScheduleConstPtr schedule = state.getSchedule();
EclipseGridConstPtr eclipseGrid = state.getEclipseGrid();
EclipseGridConstPtr eclipseGrid = state.getInputGrid();
BOOST_CHECK_EQUAL( schedule->getStartTime() , boost::posix_time::ptime(boost::gregorian::date(1998 , 3 , 8 )));
}