Skip to content

Commit 03db073

Browse files
authored
Merge pull request #479 from kenjis/update-cs
style: update coding style
2 parents f4cdfb6 + 2660b37 commit 03db073

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Authentication/MagicLinkTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]);

0 commit comments

Comments
 (0)