From 7b8590f7ee7be7a72dc19aa05a30350e4249a25b Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 2 Nov 2020 16:37:56 +0100 Subject: [PATCH] Remove extra printf --- test_util/EclRegressionTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test_util/EclRegressionTest.cpp b/test_util/EclRegressionTest.cpp index c1c4708cc..ea2646680 100644 --- a/test_util/EclRegressionTest.cpp +++ b/test_util/EclRegressionTest.cpp @@ -86,7 +86,6 @@ bool rst_cmp(const Opm::RestartIO::RstState& rst1, const Opm::RestartIO::RstStat const auto& well1 = rst1.wells[iw]; const auto& well2 = rst2.wells[iw]; - fmt::print(stderr, "Comparing well: {}", well1.name); error_count += compare(well1.name, well1.name, well2.name, "Different names for well: {} case1: {} case2: {}"); error_count += compare(well1.name, well1.group, well2.group, "Different groups for well: {} case1: {} case2: {}"); error_count += compare(well1.name, well1.ij[0], well2.ij[0], "Different wellhead.i for well: {} case1: {} case2: {}");