Skip to content

Commit 6a1bf18

Browse files
committed
Fixed typo in test when fixing PEP8/Flake8
1 parent 55827c8 commit 6a1bf18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_stats.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_rank_dense_method(self):
112112
in_out = [([1], [1.]),
113113
([2], [1.]),
114114
([0], [1.]),
115-
([2, 2], [1., 1.1]),
115+
([2, 2], [1., 1.]),
116116
([1, 2, 3], [1. / 3, 2. / 3, 3. / 3]),
117117
([4, 2, 1], [3. / 3, 2. / 3, 1. / 3],),
118118
([1, 1, 5, 5, 3], [1. / 3, 1. / 3, 3. / 3, 3. / 3, 2. / 3]),

0 commit comments

Comments
 (0)