Skip to content

Commit 706503f

Browse files
committed
test: add small float test
1 parent 4aa0ff1 commit 706503f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/parser/common/test_float.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,12 @@ def test_too_many_exponent_digits(all_parsers_all_precisions, exp, request):
8282
@pytest.mark.parametrize(
8383
"value, expected_value",
8484
[
85+
("32.0", 32.0),
8586
("18446744073709551616.0", float(1 << 64)),
8687
("18446744073709551616.5", (1 << 64) + 0.5),
8788
("36893488147419103232.3", (1 << 65) + 0.3),
8889
],
89-
ids=["2pow64_float", "2pow64_plus_half", "2pow65_plus_third"],
90+
ids=["small_float", "2pow64_float", "2pow64_plus_half", "2pow65_plus_third"],
9091
)
9192
def test_small_int_followed_by_float(
9293
all_parsers_all_precisions, value, expected_value, request

0 commit comments

Comments
 (0)