From 977fbb670cf513b0c7977865ff1c414e852bf2ae Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Tue, 27 Sep 2016 00:56:17 -0500 Subject: [PATCH] Small fixes to test_refinement. --- test/test_refinement.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_refinement.py b/test/test_refinement.py index cdb7ef4b..b18e8825 100644 --- a/test/test_refinement.py +++ b/test/test_refinement.py @@ -192,7 +192,7 @@ def test_refinement_connection( order=mesh_order) elif mesh_name == "blob": if mesh_order == 5: - pytest.xfail("") + pytest.xfail("https://gitlab.tiker.net/inducer/meshmode/issues/2") assert dim == 2 h = mesh_par mesh = gen_blob_mesh(h, mesh_order) @@ -231,7 +231,6 @@ def test_refinement_connection( import matplotlib.cm as cm cmap = cm.ScalarMappable(cmap=cm.jet) cmap.set_array(err) - #norm = plt.matplotlib.colors.Normalize(vmin=min(err), vmax=max(err)) plt.scatter(x[0], x[1], c=cmap.to_rgba(err), s=20, cmap=cmap) plt.colorbar(cmap) plt.show() -- GitLab