Skip to content

Commit 2bb663d

Browse files
authored
Merge pull request #318 from ziadoz/patch-1
[4.x] fix: bcrypt() not needed on password
2 parents c5be53b + 52f6866 commit 2bb663d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

browser-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ it('may sign in the user', function () {
2525

2626
User::factory()->create([ // assumes RefreshDatabase trait is used on Pest.php...
2727
'email' => 'nuno@laravel.com',
28-
'password' => bcrypt('password'),
28+
'password' => 'password',
2929
]);
3030

3131
$page = visit('/')->on()->mobile()->firefox();

0 commit comments

Comments
 (0)