From b9395e029163720c3dfcd2dedb9d17f651f3e525 Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Sun, 10 Jun 2018 21:15:37 +0200 Subject: [PATCH] Rename Completions -> Connections --- tests/test_ecl_output.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_ecl_output.cc b/tests/test_ecl_output.cc index 699adbc20..b259b9673 100644 --- a/tests/test_ecl_output.cc +++ b/tests/test_ecl_output.cc @@ -210,14 +210,14 @@ void test_readWriteWells() { * the completion keys (active indices) and well names correspond to the * input deck. All other entries in the well structures are arbitrary. */ - w1.completions.push_back( { 88, rc1, 30.45, 123.45 } ); - w1.completions.push_back( { 288, rc2, 33.19, 67.89 } ); + w1.connections.push_back( { 88, rc1, 30.45, 123.45 } ); + w1.connections.push_back( { 288, rc2, 33.19, 67.89 } ); w2.rates = r2; w2.bhp = 2.34; w2.temperature = 4.56; w2.control = 2; - w2.completions.push_back( { 188, rc3, 36.22, 19.28 } ); + w2.connections.push_back( { 188, rc3, 36.22, 19.28 } ); Opm::data::Wells wellRates;