Skip to content

Commit 5b7fb42

Browse files
Apply @pshriwise suggestion adding 0.1 to scale
Co-authored-by: Patrick Shriwise <[email protected]>
1 parent 2aef18c commit 5b7fb42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit_tests/test_filter_mesh.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_cylindrical_mesh_estimators(run_in_tmpdir):
114114
assert np.all(diff < 3*std_dev)
115115

116116

117-
@pytest.mark.parametrize("scale", [1.0, 1e2, 1e4, 1e5])
117+
@pytest.mark.parametrize("scale", [0.1, 1.0, 1e2, 1e4, 1e5])
118118
def test_cylindrical_mesh_coincident(scale, run_in_tmpdir):
119119
"""Test for cylindrical mesh boundary being coincident with a cell boundary"""
120120

@@ -162,7 +162,7 @@ def test_cylindrical_mesh_coincident(scale, run_in_tmpdir):
162162
assert mean1 == pytest.approx(mean2)
163163

164164

165-
@pytest.mark.parametrize("scale", [1.0, 1e2, 1e4, 1e5])
165+
@pytest.mark.parametrize("scale", [0.1, 1.0, 1e2, 1e4, 1e5])
166166
def test_spherical_mesh_coincident(scale, run_in_tmpdir):
167167
"""Test for spherical mesh boundary being coincident with a cell boundary"""
168168

0 commit comments

Comments
 (0)