Skip to content

Commit 5b21bcb

Browse files
committed
Fix AssertionError in test_rect_zoom.py
1 parent 1eefa1b commit 5b21bcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotpy/tests/unit/test_rect_zoom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def zoom(
5353
def test_rect_zoom_tool():
5454
"""Test the rectangular zoom tool."""
5555
x_path = linspace(0, 0.5, 100)
56-
y_path = linspace(0, 0.5, 100)
56+
y_path = linspace(0, 0.4, 100)
5757
zoom(x_path, y_path, lambda og, final: final < og)
5858

5959

0 commit comments

Comments
 (0)