Skip to content

Commit ff1e56d

Browse files
committed
Update ResourceTest.php
1 parent 73f1270 commit ff1e56d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integration/Http/ResourceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ public function testPostTooLargeException()
997997
{
998998
$this->expectException(PostTooLargeException::class);
999999

1000-
$request = Mockery::mock(Request::class,['server'=>['CONTENT_LENGTH'=>'99999999999999999']]);
1000+
$request = Mockery::mock(Request::class,['server'=>['CONTENT_LENGTH'=>'2147483640']]);
10011001
$post = new ValidatePostSize;
10021002
$post->handle($request, function(){return;});
10031003
}

0 commit comments

Comments
 (0)