File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -517,4 +517,4 @@ Bug Fixes
517
517
518
518
- Bug in ``DataFrame.boxplot`` where ``fontsize`` was not applied to the tick labels on both axes (:issue:`15108`)
519
519
- Bug in ``Series.replace`` and ``DataFrame.replace`` which failed on empty replacement dicts (:issue:`15289`)
520
- - Bug in ``pd.melt`` where passing a tuple value for ``value_vars`` caused a TypeError (:issue:`15348`)
520
+ - Bug in ``pd.melt`` where passing a tuple value for ``value_vars`` caused a `` TypeError`` (:issue:`15348`)
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ def test_value_vars(self):
57
57
tm .assert_frame_equal (result4 , expected4 )
58
58
59
59
def test_value_vars_types (self ):
60
+ # GH 15348
60
61
expected = DataFrame ({'id1' : self .df ['id1' ].tolist () * 2 ,
61
62
'id2' : self .df ['id2' ].tolist () * 2 ,
62
63
'variable' : ['A' ] * 10 + ['B' ] * 10 ,
You can’t perform that action at this time.
0 commit comments