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
110
110
'expires ' => Time::now ()->subDays (5 ),
111
111
]);
112
112
113
- $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token= ' . ' abasdasdf ' );
113
+ $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token=abasdasdf ' );
114
114
115
115
$ result ->assertRedirectTo (route_to ('magic-link ' ));
116
116
$ result ->assertSessionHas ('error ' , lang ('Auth.magicLinkExpired ' ));
@@ -132,7 +132,7 @@ public function testMagicLinkVerifySuccess(): void
132
132
'expires ' => Time::now ()->addMinutes (60 ),
133
133
]);
134
134
135
- $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token= ' . ' abasdasdf ' );
135
+ $ result = $ this ->get (route_to ('verify-magic-link ' ) . '?token=abasdasdf ' );
136
136
137
137
$ result ->assertRedirectTo (site_url ());
138
138
$ result ->assertSessionHas ('user ' , ['id ' => $ user ->id ]);
You can’t perform that action at this time.
0 commit comments