Skip to content

Commit 7f840f9

Browse files
committed
STY/DOC: fix spelling in docscring and avoid bad linewraps in tests
1 parent 2f0ddc6 commit 7f840f9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/matplotlib/tests/test_patches.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,10 +529,9 @@ def test_rotated_arcs():
529529
angle_vec = np.linspace(0, 351, 10)
530530
x_vec = np.arange(10) * 10
531531
y_vec = np.arange(10) * 10
532+
th2_skew_vec = [(264, 1), (78, 1), (180, 2), (180, 0.5)]
532533

533-
for (th2, skew), ax in zip(
534-
[(264, 1), (78, 1), (180, 2), (180, 0.5)], ax_arr.ravel()
535-
):
534+
for (th2, skew), ax in zip(th2_skew_vec, ax_arr.ravel()):
536535
ax.set_axis_off()
537536
ax.set_aspect("equal")
538537
# ax.set_title(f"$\\theta_2 = {th2:.0f}$, {skew=}")

0 commit comments

Comments
 (0)