diff --git a/test/common/spline/test_monotonecubicspline.cc b/test/common/spline/test_monotonecubicspline.cc index 91ade5386c5858c6f49a3cb606702b81749fa657..50693457f943e2bf33e8957a8c85c0354aa877e9 100644 --- a/test/common/spline/test_monotonecubicspline.cc +++ b/test/common/spline/test_monotonecubicspline.cc @@ -94,7 +94,7 @@ int main(int argc, char** argv) const auto resultPlot = eval([&](const double x) { return spline.eval(x); }, plotPoints); const auto resultDerivPlot = eval([&](const double x) { return spline.evalDerivative(x); }, plotPoints); - Dumux::GnuplotInterface<double> gnuplot(false); + Dumux::GnuplotInterface<double> gnuplot(/*persist=*/false); gnuplot.addDataSetToPlot(plotPoints, refPlot, "exp_reference"); gnuplot.addDataSetToPlot(plotPoints, refDerivPlot, "exp_reference_derivative"); gnuplot.addDataSetToPlot(plotPoints, resultPlot, "monotspline");