From: Wolfgang Bangerth Date: Fri, 6 Jan 2017 19:04:42 +0000 (-0700) Subject: Increase the precision with which we output data in two tests. X-Git-Tag: v8.5.0-rc1~288^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45eb7b5b049f68a1eca74eb0d5633cc87be078c8;p=dealii.git Increase the precision with which we output data in two tests. --- 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);