Removed unchecked calls to writeInit().

This commit is contained in:
Joakim Hove 2016-06-22 15:31:32 +02:00
parent 66103cd2a0
commit 791da336fe
3 changed files with 0 additions and 4 deletions

View File

@ -125,7 +125,6 @@ BOOST_AUTO_TEST_CASE(test_RFT) {
time_t start_time = eclipseState->getSchedule()->posixStartTime();
/* step time read from deck and hard-coded here */
time_t step_time = util_make_datetime( 0, 0, 0, 10, 10, 2008 );
eclipseWriter.writeInit();
Opm::data::Wells wells {
{ { "OP_1", { {}, 1.0, 1.1, {} } },

View File

@ -232,7 +232,6 @@ first_sim(test_work_area_type * test_area) {
EclipseWriter eclWriter( eclipseState, num_cells, nullptr, NNC() );
auto start_time = util_make_datetime( 0, 0, 0, 1, 11, 1979 );
auto first_step = util_make_datetime( 0, 0, 0, 10, 10, 2008 );
eclWriter.writeInit();
auto sol = mkSolution( num_cells );
auto wells = mkWells();

View File

@ -143,8 +143,6 @@ BOOST_AUTO_TEST_CASE(EclipseWriteRestartWellInfo) {
const auto num_cells = eclipseState->getInputGrid()->getCartesianSize();
EclipseWriter eclipseWriter( eclipseState, num_cells, nullptr, NNC() );
eclipseWriter.writeInit();
int countTimeStep = eclipseState->getSchedule()->getTimeMap()->numTimesteps();
using ds = data::Solution::key;