Skip to content

Commit da8a065

Browse files
tests
1 parent 64dcbb2 commit da8a065

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed
Loading
Loading

lib/mpl_toolkits/mplot3d/tests/test_axes3d.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -845,6 +845,14 @@ def test_wireframe3d():
845845
ax.plot_wireframe(X, Y, Z, rcount=13, ccount=13)
846846

847847

848+
@mpl3d_image_comparison(['wireframe3dasymmetric.png'], style='mpl20')
849+
def test_wireframe3dasymmetric():
850+
fig = plt.figure()
851+
ax = fig.add_subplot(projection='3d')
852+
X, Y, Z = axes3d.get_test_data(0.05)
853+
ax.plot_wireframe(X, Y, Z, rcount=3, ccount=13)
854+
855+
848856
@mpl3d_image_comparison(['wireframe3dzerocstride.png'], style='mpl20')
849857
def test_wireframe3dzerocstride():
850858
fig = plt.figure()

0 commit comments

Comments
 (0)