@@ -161,7 +161,6 @@ def missing_date_fromisoformat(test):
161
161
DRAFT4 .tests (),
162
162
DRAFT4 .format_tests (),
163
163
DRAFT4 .optional_tests_of (name = "bignum" ),
164
- DRAFT4 .optional_tests_of (name = "float-overflow" ),
165
164
DRAFT4 .optional_tests_of (name = "non-bmp-regex" ),
166
165
DRAFT4 .optional_tests_of (name = "zeroTerminatedFloats" ),
167
166
Validator = Draft4Validator ,
@@ -235,18 +234,6 @@ def missing_date_fromisoformat(test):
235
234
subject = "uniqueItems" ,
236
235
description = '{"a": true} and {"a": 1} are unique' ,
237
236
)(test )
238
- or skip (
239
- message = bug (743 ),
240
- subject = "float-overflow" ,
241
- )(test )
242
- or skip (
243
- message = bug (743 ),
244
- subject = "multipleOf" ,
245
- description = (
246
- "always invalid, but naive implementations "
247
- "may raise an overflow error"
248
- ),
249
- )(test )
250
237
),
251
238
)
252
239
@@ -255,7 +242,6 @@ def missing_date_fromisoformat(test):
255
242
DRAFT6 .tests (),
256
243
DRAFT6 .format_tests (),
257
244
DRAFT6 .optional_tests_of (name = "bignum" ),
258
- DRAFT6 .optional_tests_of (name = "float-overflow" ),
259
245
DRAFT6 .optional_tests_of (name = "non-bmp-regex" ),
260
246
Validator = Draft6Validator ,
261
247
format_checker = draft6_format_checker ,
@@ -348,18 +334,6 @@ def missing_date_fromisoformat(test):
348
334
subject = "const" ,
349
335
case_description = 'const with {"a": true} does not match {"a": 1}' ,
350
336
)(test )
351
- or skip (
352
- message = bug (743 ),
353
- subject = "float-overflow" ,
354
- )(test )
355
- or skip (
356
- message = bug (743 ),
357
- subject = "multipleOf" ,
358
- description = (
359
- "always invalid, but naive implementations "
360
- "may raise an overflow error"
361
- ),
362
- )(test )
363
337
),
364
338
)
365
339
@@ -368,7 +342,6 @@ def missing_date_fromisoformat(test):
368
342
DRAFT7 .tests (),
369
343
DRAFT7 .format_tests (),
370
344
DRAFT7 .optional_tests_of (name = "bignum" ),
371
- DRAFT7 .optional_tests_of (name = "float-overflow" ),
372
345
DRAFT7 .optional_tests_of (name = "content" ),
373
346
DRAFT7 .optional_tests_of (name = "non-bmp-regex" ),
374
347
Validator = Draft7Validator ,
@@ -484,18 +457,6 @@ def missing_date_fromisoformat(test):
484
457
subject = "const" ,
485
458
case_description = 'const with {"a": true} does not match {"a": 1}' ,
486
459
)(test )
487
- or skip (
488
- message = bug (743 ),
489
- subject = "float-overflow" ,
490
- )(test )
491
- or skip (
492
- message = bug (743 ),
493
- subject = "multipleOf" ,
494
- description = (
495
- "always invalid, but naive implementations "
496
- "may raise an overflow error"
497
- ),
498
- )(test )
499
460
),
500
461
)
501
462
0 commit comments