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 3fcf814 commit 14442a0Copy full SHA for 14442a0
lib/matplotlib/tests/test_contour.py
@@ -535,7 +535,8 @@ def test_contour_legend_elements():
535
for a, c in zip(artists, colors))
536
537
538
-@pytest.mark.parametrize("algorithm, klass",
+@pytest.mark.parametrize(
539
+ "algorithm, klass",
540
[('mpl2005', contourpy.Mpl2005ContourGenerator),
541
('mpl2014', contourpy.Mpl2014ContourGenerator),
542
('serial', contourpy.SerialContourGenerator),
@@ -551,8 +552,8 @@ def test_algorithm_name(algorithm, klass):
551
552
plt.contourf(z, algorithm=algorithm)
553
554
-@pytest.mark.parametrize("algorithm",
555
- ['mpl2005', 'mpl2014', 'serial', 'threaded'])
556
+ "algorithm", ['mpl2005', 'mpl2014', 'serial', 'threaded'])
557
def test_algorithm_supports_corner_mask(algorithm):
558
z = np.array([[1.0, 2.0], [3.0, 4.0]])
559
0 commit comments