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.
1 parent 73f1270 commit ff1e56dCopy full SHA for ff1e56d
tests/Integration/Http/ResourceTest.php
@@ -997,7 +997,7 @@ public function testPostTooLargeException()
997
{
998
$this->expectException(PostTooLargeException::class);
999
1000
- $request = Mockery::mock(Request::class,['server'=>['CONTENT_LENGTH'=>'99999999999999999']]);
+ $request = Mockery::mock(Request::class,['server'=>['CONTENT_LENGTH'=>'2147483640']]);
1001
$post = new ValidatePostSize;
1002
$post->handle($request, function(){return;});
1003
}
0 commit comments