From 6c143b60dd7ed97b2ca5ce15024f99b98ec1b179 Mon Sep 17 00:00:00 2001 From: ellis Date: Tue, 22 Aug 2017 19:03:09 -0500 Subject: [PATCH] Relax error check --- test/test_meshmode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_meshmode.py b/test/test_meshmode.py index cd729833..1d2a954a 100644 --- a/test/test_meshmode.py +++ b/test/test_meshmode.py @@ -176,7 +176,7 @@ def test_partition_interpolation(ctx_getter, group_factory, dim, mesh_pars, if e is not None: print("Error of connection from part %i to part %i." % (i, j)) print(e) - assert(e.order_estimate() >= order - 0.5 or e.max_error() < 1e-13) + assert(e.order_estimate() >= order - 0.5 or e.max_error() < 1e-12) # }}} -- GitLab