Skip to content

Commit 7a48bcf

Browse files
committed
Unit test fix
1 parent d365f7f commit 7a48bcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/HttpMessage/DataProviderTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ public function uriPortsInvalid()
11121112
'false' => [false],
11131113
'float' => [7.4],
11141114
'max' => [PHP_INT_MAX],
1115-
'min' => [PHP_INT_MIN],
1115+
'min' => [PHP_INT_MAX * -1], // PHP_INT_MIN is php 7.0
11161116
'negative' => [-2],
11171117
'object' => [new stdClass()],
11181118
'outOfRange 1' => [0xffff + 1],

0 commit comments

Comments
 (0)