Skip to content

Commit d80bab4

Browse files
committed
remove indexer type from test name
1 parent e6f90d9 commit d80bab4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/tests/indexing/test_iloc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def test_iloc_empty_list_indexer_is_ok(self):
592592
check_index_type=True,
593593
check_column_type=True)
594594

595-
def test_loc_identity_slice_returns_new_object(self):
595+
def test_identity_slice_returns_new_object(self):
596596
# GH13873
597597
df = DataFrame({'a': [1, 2, 3]})
598598
result = df.iloc[:]

pandas/tests/indexing/test_loc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ def test_loc_empty_list_indexer_is_ok(self):
631631
check_index_type=True,
632632
check_column_type=True)
633633

634-
def test_loc_identity_slice_returns_new_object(self):
634+
def test_identity_slice_returns_new_object(self):
635635
# GH13873
636636
df = DataFrame({'a': [1, 2, 3]})
637637
result = df.loc[:]

0 commit comments

Comments
 (0)