We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9202d34 commit 7ff9cb6Copy full SHA for 7ff9cb6
1 file changed
tests/DecodeTest.php
@@ -113,6 +113,10 @@ public function testDecodeIntegerFakeString()
113
*/
114
public function testDecodeIntegerOverflow()
115
{
116
+ if (version_compare(phpversion(), '8.5.0', '>=')) {
117
+ $this->markTestSkipped();
118
+ }
119
+
120
$this->expectException(ParseException::class);
121
$this->expectExceptionMessage('Invalid integer format or integer overflow');
122
0 commit comments