We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c6faa6a + 5a01f0e commit 842d092Copy full SHA for 842d092
Tests/NumberFormatter/AbstractNumberFormatterTest.php
@@ -382,11 +382,6 @@ public function formatFractionDigitsProvider()
382
yield [1.123, '1.1', 1, 1];
383
yield [1.123, '1.12', 2, 2];
384
yield [1.123, '1.123', -1, 0];
385
-
386
- if (\PHP_VERSION_ID < 80000) {
387
- // This dataset will produce a TypeError on php 8.
388
- yield [1.123, '1', 'abc', 0];
389
- }
390
}
391
392
/**
@@ -417,11 +412,6 @@ public function formatGroupingUsedProvider()
417
412
yield [1000, '1,000', 1, 1];
418
413
yield [1000, '1,000', 2, 1];
419
414
yield [1000, '1,000', -1, 1];
420
421
422
423
- yield [1000, '1000', 'abc', 0];
424
425
415
426
416
427
0 commit comments