#5020 Flow Diag : Avoid creating plots in constructor to make pytest work

This commit is contained in:
Magne Sjaastad
2019-11-11 08:34:30 +01:00
parent 585a496db7
commit aa11e3601b
7 changed files with 31 additions and 27 deletions

View File

@@ -154,6 +154,8 @@ RimWellAllocationPlot::~RimWellAllocationPlot()
//--------------------------------------------------------------------------------------------------
void RimWellAllocationPlot::setFromSimulationWell( RimSimWellInView* simWell )
{
m_showWindow = true;
RimEclipseView* eclView;
simWell->firstAncestorOrThisOfType( eclView );
RimEclipseResultCase* eclCase;
@@ -170,8 +172,6 @@ void RimWellAllocationPlot::setFromSimulationWell( RimSimWellInView* simWell )
m_flowDiagSolution = m_case->defaultFlowDiagSolution();
}
m_showWindow = true;
onLoadDataAndUpdate();
}