From: bangerth Date: Wed, 23 Aug 2006 14:14:05 +0000 (+0000) Subject: Relax criterion after recent change to use relative tolerances in VectorTools::project X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd9d472e7086fd8582039a9e4323e7a1631e4a27;p=dealii-svn.git Relax criterion after recent change to use relative tolerances in VectorTools::project git-svn-id: https://svn.dealii.org/trunk@13738 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/dof_tools_19.cc b/tests/bits/dof_tools_19.cc index 2b62edf9f7..94f950c64f 100644 --- a/tests/bits/dof_tools_19.cc +++ b/tests/bits/dof_tools_19.cc @@ -81,7 +81,7 @@ check_this (const DoFHandler &dof_handler) VectorTools::L2_norm); const double p_l2_error = cellwise_errors.l2_norm(); - Assert (p_l2_error < 1e-14, ExcInternalError()); + Assert (p_l2_error < 1e-11, ExcInternalError()); deallog << "L2_Error : " << p_l2_error << std::endl; }