Skip to content

Commit 42fbca3

Browse files
committed
rebase to main
1 parent f393144 commit 42fbca3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Feature/BlockUsersTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
test('cannot unblock user when not logged in', function () {
1717
$user = $this->createUser();
1818

19-
$this->put("/users/{$user->username}/unblockblock")->assertRedirectedTo('login');
19+
$this->put("/users/{$user->username}/unblock")->assertRedirectedTo('login');
2020
});
2121

2222
test('cannot block self', function () {
@@ -61,5 +61,5 @@
6161

6262
$this->loginAs($unblocker);
6363

64-
$this->put("/users/{$unblocked->username}/unblockblock")->assertSessionHas('success', trans('settings.user.unblocked'));
64+
$this->put("/users/{$unblocked->username}/unblock")->assertSessionHas('success', trans('settings.user.unblocked'));
6565
});

0 commit comments

Comments
 (0)