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 00c7f17 commit 13d6c42Copy full SHA for 13d6c42
tests/Feature/AuthorizeInboxMiddlewareTest.php
@@ -29,10 +29,10 @@
29
});
30
31
it('redirects to inbox.unauthorized_redirect page when set in config', function () {
32
- config()->set('inbox.unauthorized_redirect', '/custon-unauthorized');
+ config()->set('inbox.unauthorized_redirect', '/custom-unauthorized');
33
Gate::shouldReceive('allows')->with('viewMailbox')->andReturn(false);
34
35
- $this->get('/mailbox-test')->assertRedirect('/custon-unauthorized');
+ $this->get('/mailbox-test')->assertRedirect('/custom-unauthorized');
36
37
38
0 commit comments