Skip to content

Commit

Permalink
TST: set object dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Aug 14, 2017
1 parent cd8d2b6 commit edf78b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/reshape/test_concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ def test_concat_categorical_empty(self):
tm.assert_series_equal(s1.append(s2, ignore_index=True), s2)

s1 = pd.Series([], dtype='category')
s2 = pd.Series([])
s2 = pd.Series([], dtype='object')

# different dtype => not-category
tm.assert_series_equal(pd.concat([s1, s2], ignore_index=True), s2)
Expand Down

0 comments on commit edf78b5

Please sign in to comment.