From 45eb7b5b049f68a1eca74eb0d5633cc87be078c8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 6 Jan 2017 12:04:42 -0700 Subject: [PATCH] Increase the precision with which we output data in two tests. --- tests/fe/fe_project_2d.cc | 2 +- tests/fe/fe_project_3d.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/fe/fe_project_2d.cc b/tests/fe/fe_project_2d.cc index 7b96d6f8c6..1e94630fed 100644 --- a/tests/fe/fe_project_2d.cc +++ b/tests/fe/fe_project_2d.cc @@ -227,7 +227,7 @@ void test(const FiniteElement &fe, unsigned n_cycles, bool global, const Po int main () { std::ofstream logfile ("output"); - deallog << std::setprecision(6); + deallog << std::setprecision(7); deallog << std::fixed; deallog.attach(logfile); deallog.threshold_double (1e-8); diff --git a/tests/fe/fe_project_3d.cc b/tests/fe/fe_project_3d.cc index ad26e94355..c19a091aa2 100644 --- a/tests/fe/fe_project_3d.cc +++ b/tests/fe/fe_project_3d.cc @@ -399,7 +399,7 @@ void test(const FiniteElement &fe, unsigned n_cycles, bool global, const Po int main () { std::ofstream logfile ("output"); - deallog << std::setprecision(6); + deallog << std::setprecision(7); deallog << std::fixed; deallog.attach(logfile); deallog.threshold_double (1e-8); -- 2.39.5