Skip to content

Commit

Permalink
Remove named params since they dont match the actual params and aren'…
Browse files Browse the repository at this point in the history
…t really adding anything helpful to the test
  • Loading branch information
jasonvarga committed Feb 24, 2025
1 parent ee5e722 commit 0c593ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/Auth/Protect/PasswordEntryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@ public static function localPasswordProvider()
{
return [
'string' => [
'value' => 'the-local-password',
'submitted' => 'the-local-password',
'the-local-password',
'the-local-password',
],
'array with single value' => [
'value' => ['the-local-password'],
'submitted' => 'the-local-password',
['the-local-password'],
'the-local-password',
],
'array with multiple values' => [
'value' => ['first-local-password', 'second-local-password'],
'submitted' => 'second-local-password',
['first-local-password', 'second-local-password'],
'second-local-password',
],
];
}
Expand Down

0 comments on commit 0c593ea

Please sign in to comment.