@@ -680,8 +680,8 @@ def test_plot_multiple_input_multiple_label():
680680 y = [[2 , 4 , 3 ], [4 , 7 , 1 ], [3 , 9 , 2 ]]
681681
682682 label_arrays = [['one' , 'two' , 'three' ],
683- ('one' , 'two' , 'three' ),
684- np .array (['one' , 'two' , 'three' ])]
683+ ('one' , 'two' , 'three' ),
684+ np .array (['one' , 'two' , 'three' ])]
685685
686686 for label in label_arrays :
687687 fig , ax = plt .subplots ()
@@ -719,8 +719,8 @@ def test_plot_single_input_multiple_label():
719719 y = [2 , 4 , 3 ]
720720
721721 label_arrays = [['one' , 'two' , 'three' ],
722- ('one' , 'two' , 'three' ),
723- np .array (['one' , 'two' , 'three' ])]
722+ ('one' , 'two' , 'three' ),
723+ np .array (['one' , 'two' , 'three' ])]
724724
725725 for label in label_arrays :
726726 fig , ax = plt .subplots ()
@@ -739,4 +739,4 @@ def test_plot_multiple_label_incorrect_length_exception():
739739 y = [[2 , 4 , 3 ], [4 , 7 , 1 ], [3 , 9 , 2 ]]
740740 label = ['one' , 'two' ]
741741 fig , ax = plt .subplots ()
742- ax .plot (x , y , label = label )
742+ ax .plot (x , y , label = label )
0 commit comments