Skip to content

Commit 961082c

Browse files
committed
Removal of values from valid cat completion tests.
1 parent 6fba249 commit 961082c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pandas/tests/series/test_api.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,10 @@ def test_tab_completion(self):
245245

246246
def test_tab_completion_with_categorical(self):
247247
# test the tab completion display
248-
ok_for_cat = ['name', 'index', 'categorical', 'categories', 'codes',
249-
'ordered', 'set_categories', 'add_categories',
250-
'remove_categories', 'rename_categories',
251-
'reorder_categories', 'remove_unused_categories',
252-
'as_ordered', 'as_unordered']
248+
ok_for_cat = ['categories', 'codes', 'ordered', 'set_categories',
249+
'add_categories', 'remove_categories',
250+
'rename_categories', 'reorder_categories',
251+
'remove_unused_categories', 'as_ordered', 'as_unordered']
253252

254253
def get_dir(s):
255254
results = [r for r in s.cat.__dir__() if not r.startswith('_')]

0 commit comments

Comments
 (0)