From 5b7fb427d3cb4c5ba9fa2a5555004c10e2e53db1 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Sat, 25 Mar 2023 15:36:11 -0500 Subject: [PATCH] Apply @pshriwise suggestion adding 0.1 to scale Co-authored-by: Patrick Shriwise --- tests/unit_tests/test_filter_mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit_tests/test_filter_mesh.py b/tests/unit_tests/test_filter_mesh.py index e3fae15be..c93bfa037 100644 --- a/tests/unit_tests/test_filter_mesh.py +++ b/tests/unit_tests/test_filter_mesh.py @@ -114,7 +114,7 @@ def test_cylindrical_mesh_estimators(run_in_tmpdir): assert np.all(diff < 3*std_dev) -@pytest.mark.parametrize("scale", [1.0, 1e2, 1e4, 1e5]) +@pytest.mark.parametrize("scale", [0.1, 1.0, 1e2, 1e4, 1e5]) def test_cylindrical_mesh_coincident(scale, run_in_tmpdir): """Test for cylindrical mesh boundary being coincident with a cell boundary""" @@ -162,7 +162,7 @@ def test_cylindrical_mesh_coincident(scale, run_in_tmpdir): assert mean1 == pytest.approx(mean2) -@pytest.mark.parametrize("scale", [1.0, 1e2, 1e4, 1e5]) +@pytest.mark.parametrize("scale", [0.1, 1.0, 1e2, 1e4, 1e5]) def test_spherical_mesh_coincident(scale, run_in_tmpdir): """Test for spherical mesh boundary being coincident with a cell boundary"""