Skip to content

Commit 6534bc1

Browse files
use better test name
1 parent 6dfa144 commit 6534bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/test_loc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3265,7 +3265,7 @@ def test_loc_nonunique_masked_index(self):
32653265
)
32663266
tm.assert_frame_equal(result, expected)
32673267

3268-
def test_loc_assign_to_should_not_raise(self):
3268+
def test_loc_reindexing_of_empty_index(self):
32693269
# GH 57735
32703270
df = DataFrame(index=[1, 1, 2, 2], data=["1", "1", "2", "2"])
32713271
df.loc[df[0].str.len() > 1, 0] = df[0]

0 commit comments

Comments
 (0)