Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/rappasoft/lockout into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
rappasoft committed Jun 27, 2020
2 parents 7f516cf + a3177ac commit 0c2ff51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ public function test_a_page_that_is_whitelisted_is_allowed()
{
config(['lockout.enabled' => true]);
config(['lockout.whitelist' => [
'post' => 'password/confirm'
'post' => 'password/confirm',
]]);

$this->call('POST', 'password/confirm')
->assertStatus(Response::HTTP_OK);

config(['lockout.whitelist' => [
'post' => 'password/confirm/123'
'post' => 'password/confirm/123',
]]);

$this->call('POST', 'password/confirm')
Expand Down

0 comments on commit 0c2ff51

Please sign in to comment.