From c99911f45432440beee2a9b6d7b5a19ef8d50997 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 22 Mar 2018 15:35:35 -0700 Subject: [PATCH] fix test --- tests/Integration/Routing/UrlSigningTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Integration/Routing/UrlSigningTest.php b/tests/Integration/Routing/UrlSigningTest.php index e209c9237ceb..824fdf05d55b 100644 --- a/tests/Integration/Routing/UrlSigningTest.php +++ b/tests/Integration/Routing/UrlSigningTest.php @@ -61,7 +61,7 @@ public function test_signed_middleware_with_invalid_url() Carbon::setTestNow(Carbon::create(2018, 1, 1)->addMinutes(10)); $response = $this->get($url); - $response->assertStatus(401); + $response->assertStatus(403); } public function test_signed_middleware_with_routable_parameter()