From: Wolfgang Bangerth Date: Fri, 20 Feb 2004 00:25:57 +0000 (+0000) Subject: adjust tolerance X-Git-Tag: v8.0.0~15777 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27a893c8c175feb7b36fc41e3e8e72ce11f2d20e;p=dealii.git adjust tolerance git-svn-id: https://svn.dealii.org/trunk@8481 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/volume_2.cc b/tests/bits/volume_2.cc index f0bc6e401d..0f7ca0b045 100644 --- a/tests/bits/volume_2.cc +++ b/tests/bits/volume_2.cc @@ -2,7 +2,7 @@ // volume_2.cc,v 1.1 2003/10/19 22:29:39 wolf Exp // Version: // -// Copyright (C) 2003 by the deal.II authors +// Copyright (C) 2003, 2004 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -93,7 +93,7 @@ void check (const Triangulation &tria, } } - Assert (std::fabs(v1-v2)/v1 < 1e-4, ExcInternalError()); + Assert (std::fabs(v1-v2)/v1 < 4e-4, ExcInternalError()); deallog << " face integration: " << v1 / dim << std::endl;