We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea1008d commit db50153Copy full SHA for db50153
1 file changed
tests/Authentication/MagicLinkTest.php
@@ -116,7 +116,7 @@ public function testMagicLinkVerifyExpired(): void
116
$result->assertSessionHas('error', lang('Auth.magicLinkExpired'));
117
118
// It should have set temp session var
119
- $this->assertFalse(session()->has('magic_link_login'));
+ $this->assertFalse(session()->has('magicLogin'));
120
}
121
122
public function testMagicLinkVerifySuccess(): void
@@ -139,7 +139,7 @@ public function testMagicLinkVerifySuccess(): void
139
$this->assertTrue(auth()->loggedIn());
140
141
142
- $this->assertTrue(session()->has('magic_login'));
143
- $this->assertTrue(session('magic_login'));
+ $this->assertTrue(session()->has('magicLogin'));
+ $this->assertTrue(session('magicLogin'));
144
145
0 commit comments