File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ public function testMagicLinkVerifyExpired(): void
110110 'expires ' => Time::now ()->subDays (5 ),
111111 ]);
112112
113- $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token= ' . ' abasdasdf ' );
113+ $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token=abasdasdf ' );
114114
115115 $ result ->assertRedirectTo (route_to ('magic-link ' ));
116116 $ result ->assertSessionHas ('error ' , lang ('Auth.magicLinkExpired ' ));
@@ -132,7 +132,7 @@ public function testMagicLinkVerifySuccess(): void
132132 'expires ' => Time::now ()->addMinutes (60 ),
133133 ]);
134134
135- $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token= ' . ' abasdasdf ' );
135+ $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token=abasdasdf ' );
136136
137137 $ result ->assertRedirectTo (site_url ());
138138 $ result ->assertSessionHas ('user ' , ['id ' => $ user ->id ]);
You can’t perform that action at this time.
0 commit comments