Skip to content

Commit a0ccb78

Browse files
committed
Add ids to test_fill_between tests
1 parent f76a010 commit a0ccb78

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -852,6 +852,10 @@ def test_polycollection_joinstyle():
852852
(np.zeros((2, 2)), 3, 3),
853853
(np.arange(0.0, 2, 0.02), np.zeros((2, 2)), 3),
854854
(np.arange(0.0, 2, 0.02), 3, np.zeros((2, 2)))
855+
], ids=[
856+
'2d_x_input',
857+
'2d_y1_input',
858+
'2d_y2_input'
855859
]
856860
)
857861
def test_fill_between_input(x, y1, y2):
@@ -866,6 +870,10 @@ def test_fill_between_input(x, y1, y2):
866870
(np.zeros((2, 2)), 3, 3),
867871
(np.arange(0.0, 2, 0.02), np.zeros((2, 2)), 3),
868872
(np.arange(0.0, 2, 0.02), 3, np.zeros((2, 2)))
873+
], ids=[
874+
'2d_y_input',
875+
'2d_x1_input',
876+
'2d_x2_input'
869877
]
870878
)
871879
def test_fill_betweenx_input(y, x1, x2):

0 commit comments

Comments
 (0)