Skip to content

Commit e16c71b

Browse files
committed
test: remove ids and add new test with no decimal separator
1 parent 44b68bc commit e16c71b

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,14 @@ def test_too_many_exponent_digits(all_parsers_all_precisions, exp, request):
8383
"value, expected_value",
8484
[
8585
("32.0", 32.0),
86+
("32e0", 32.0),
8687
("3.2e1", 32.0),
8788
("3.2e80", 3.2e80),
8889
("3.2e-80", 3.2e-80),
8990
("18446744073709551616.0", float(1 << 64)),
9091
("18446744073709551616.5", (1 << 64) + 0.5),
9192
("36893488147419103232.3", (1 << 65) + 0.3),
9293
],
93-
ids=[
94-
"small_float",
95-
"small_float_exponent",
96-
"big_exponent",
97-
"small_exponent",
98-
"2pow64_float",
99-
"2pow64_plus_half",
100-
"2pow65_plus_third",
101-
],
10294
)
10395
def test_small_int_followed_by_float(
10496
all_parsers_all_precisions, value, expected_value, request

0 commit comments

Comments
 (0)