Skip to content

Commit

Permalink
Account lockout policy - fail if no user id
Browse files Browse the repository at this point in the history
  • Loading branch information
rochamarcelo committed Mar 29, 2024
1 parent 6240ba8 commit 2b2fa3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public function testIsUnlockedWithoutIdButNotEmpty()
$handler = new LockoutHandler();
$user = [
'username' => 'user-2',
'email' => '[email protected]'
'email' => '[email protected]',
];
$actual = $handler->isUnlocked($user);
$this->assertFalse($actual);
Expand Down

0 comments on commit 2b2fa3e

Please sign in to comment.