Skip to content

Commit 474e161

Browse files
committed
Relax requirement for interpolation in tests
This is tuning of commit 4c66136 @reproduce_failure('6.114.1', b'AXicY2BgOGDAgAUc8L/eJVux8DqIKYAQFUBXx0gME9kEBXwmAABmjwjE') triggers a failure (ip_dist_std = ~1.13) which the accompanying plot reveals is perfectly fine.
1 parent 7272760 commit 474e161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils_interpolation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def test_interpolate_wo(
325325
# that is the std.dev of the distances is low:
326326
ip_dist_std = np.std(np.diff(dists[1:])) # This number depends on 'h' and 't' range
327327
# (avoiding the first which reproduces wo_low
328-
if ip_dist_std > 1.1: # Found by trial and error
328+
if ip_dist_std > 1.2: # Found by trial and error
329329
print(f"ip_dist_std: {ip_dist_std}")
330330
print(dists)
331331

0 commit comments

Comments
 (0)