Skip to content

Commit 64851a2

Browse files
committed
Fix test not pass. Symmetric??
1 parent 9368230 commit 64851a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/tests/test_subplots.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def check_shared(axs, x_shared, y_shared):
1919
enumerate(zip("xy", [x_shared, y_shared]))):
2020
if i2 <= i1:
2121
continue
22-
share = getattr(ax1, "_shared_{}_axes".format(name))
23-
share = ax2 in share
22+
share = getattr(ax2, "_shared_{}_axes".format(name))
23+
share = ax1 in share
2424
assert \
2525
(share
2626
== shared[i1, i2]), \

0 commit comments

Comments
 (0)