Skip to content

Commit c19970b

Browse files
committed
fix some style erros on infinity tests
1 parent 8b5b8b2 commit c19970b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_algos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,8 +1271,8 @@ def test_infinity_sort():
12711271
NegInf = libalgos.NegInfinity()
12721272

12731273
ref_nums = [NegInf, float("-inf"), -1e100, 0, 1e100, float("inf"), Inf]
1274-
ref_objects = [NegInf, 'A', 'Ac', 'B', 'C', 'D', 'a','z', Inf]
1275-
1274+
ref_objects = [NegInf, 'A', 'Ac', 'B', 'C', 'D', 'a', 'z', Inf]
1275+
12761276
assert all(Inf >= x for x in ref_nums)
12771277
assert all(Inf > x or x is Inf for x in ref_nums)
12781278
assert Inf >= Inf and Inf == Inf

0 commit comments

Comments
 (0)