Skip to content

Commit 5267067

Browse files
committed
Remove explicit limits
1 parent 6605026 commit 5267067

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

lib/matplotlib/tests/test_collections.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,15 +1161,11 @@ def test_masked_set_offsets(fig_ref, fig_test):
11611161
scat.set_offsets(np.ma.column_stack([x, y]))
11621162
ax_test.set_xticks([])
11631163
ax_test.set_yticks([])
1164-
ax_test.set_xlim(0, 7)
1165-
ax_test.set_ylim(0, 6)
11661164

11671165
ax_ref = fig_ref.add_subplot()
11681166
ax_ref.scatter([1, 2, 5], [1, 2, 5])
11691167
ax_ref.set_xticks([])
11701168
ax_ref.set_yticks([])
1171-
ax_ref.set_xlim(0, 7)
1172-
ax_ref.set_ylim(0, 6)
11731169

11741170

11751171
def test_check_offsets_dtype():

0 commit comments

Comments
 (0)