We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d319a96 commit 95f4003Copy full SHA for 95f4003
lib/matplotlib/tests/test_collections.py
@@ -743,7 +743,6 @@ def test_quadmesh_deprecated_signature(
743
qmesh = QuadMesh(coords, **kwargs)
744
qmesh.set_array(C)
745
ax.add_collection(qmesh)
746
-
747
assert qmesh._shading == 'flat'
748
749
ax = fig_ref.add_subplot()
@@ -756,6 +755,7 @@ def test_quadmesh_deprecated_signature(
756
755
**kwargs)
757
qmesh.set_array(C.flatten() if flat_ref else C)
758
+ assert qmesh._shading == 'flat'
759
760
761
@check_figures_equal(extensions=['png'])
0 commit comments