Skip to content

Commit 4c44a09

Browse files
Tests
1 parent 22474c5 commit 4c44a09

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/mpl_toolkits/mplot3d/tests/test_axes3d.py

+2
Original file line numberDiff line numberDiff line change
@@ -1389,6 +1389,7 @@ def test_axlim_clip(fig_test, fig_ref):
13891389
Z = X + Y
13901390
ax.plot_surface(X, Y, Z, facecolor='C1', edgecolors=None,
13911391
rcount=50, ccount=50, axlim_clip=True)
1392+
ax.plot_wireframe(X, Y, Z, color='C1', rcount=50, ccount=50, axlim_clip=True)
13921393
# This ax.plot is to cover the extra surface edge which is not clipped out
13931394
ax.plot([0.5, 0.5], [0, 1], [0.5, 1.5],
13941395
color='k', linewidth=3, zorder=5, axlim_clip=True)
@@ -1408,6 +1409,7 @@ def test_axlim_clip(fig_test, fig_ref):
14081409
Z = Z[idx].reshape(11, 6)
14091410
ax.plot_surface(X, Y, Z, facecolor='C1', edgecolors=None,
14101411
rcount=50, ccount=50, axlim_clip=False)
1412+
ax.plot_wireframe(X, Y, Z, color='C1', rcount=50, ccount=50, axlim_clip=False)
14111413
ax.plot([0.5, 0.5], [0, 1], [0.5, 1.5],
14121414
color='k', linewidth=3, zorder=5, axlim_clip=False)
14131415
ax.scatter(X.ravel(), Y.ravel(), Z.ravel() + 1, axlim_clip=False)

0 commit comments

Comments
 (0)