From 662e44683cbc0b2ff6ebf59b8c65382d9fec829a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Mon, 14 Oct 2019 00:10:38 -0500 Subject: [PATCH] INTEHEAD Test: Initialize Maximum Number of Wells in Field Fixes a warning about missing initializers. --- tests/test_InteHEAD.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_InteHEAD.cpp b/tests/test_InteHEAD.cpp index 81b59cbae..e731ce43c 100755 --- a/tests/test_InteHEAD.cpp +++ b/tests/test_InteHEAD.cpp @@ -159,10 +159,11 @@ BOOST_AUTO_TEST_CASE(WellTableDimensions) const auto maxPerf = 29; const auto maxWellInGroup = 3; const auto maxGroupInField = 14; + const auto maxWellInField = 20; const auto ih = Opm::RestartIO::InteHEAD{} .wellTableDimensions({ - numWells, maxPerf, maxWellInGroup, maxGroupInField, 0 + numWells, maxPerf, maxWellInGroup, maxGroupInField, maxWellInField }); const auto& v = ih.data();