Skip to content

Commit 842d092

Browse files
Merge branch '4.4' into 5.1
* 4.4: [Debug] fix merge
2 parents c6faa6a + 5a01f0e commit 842d092

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Tests/NumberFormatter/AbstractNumberFormatterTest.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,6 @@ public function formatFractionDigitsProvider()
382382
yield [1.123, '1.1', 1, 1];
383383
yield [1.123, '1.12', 2, 2];
384384
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-
}
390385
}
391386

392387
/**
@@ -417,11 +412,6 @@ public function formatGroupingUsedProvider()
417412
yield [1000, '1,000', 1, 1];
418413
yield [1000, '1,000', 2, 1];
419414
yield [1000, '1,000', -1, 1];
420-
421-
if (\PHP_VERSION_ID < 80000) {
422-
// This dataset will produce a TypeError on php 8.
423-
yield [1000, '1000', 'abc', 0];
424-
}
425415
}
426416

427417
/**

0 commit comments

Comments
 (0)