Skip to content

Commit eb2f210

Browse files
committed
Fix trailing whitespace in test_mixed_int_string.py
1 parent a784a90 commit eb2f210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexes/test_mixed_int_string.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
def test_mixed_int_string_index():
55
idx = pd.Index([0, "a", 1, "b", 2, "c"])
6-
6+
77
# Check if the index is of type Index
88
assert len(idx) == 6
99
assert idx[1] == "a"
1010
assert idx[-1] == "c"
11-
11+
1212
# Check if the index is sorted (it should not be)
1313
with pytest.raises(TypeError):
1414
idx.sort_values()

0 commit comments

Comments
 (0)