Skip to content

Commit 78d4758

Browse files
committed
Remove test case that is covered elsewhere
1 parent c089f1f commit 78d4758

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/test_algos.py

-4
Original file line numberDiff line numberDiff line change
@@ -523,10 +523,6 @@ def test_order_of_appearance(self):
523523
expected = np.array(['a', 'b', 'c'], dtype=object)
524524
tm.assert_numpy_array_equal(result, expected)
525525

526-
result = pd.unique(Series(Categorical(list('aabc'))))
527-
expected = Categorical(list('abc'))
528-
tm.assert_categorical_equal(result, expected)
529-
530526
@pytest.mark.parametrize("arg ,expected", [
531527
(('1', '1', '2'), np.array(['1', '2'], dtype=object)),
532528
(('foo',), np.array(['foo'], dtype=object))

0 commit comments

Comments
 (0)