diff --git a/tests/Feature/AuthPage/UrlListPageTest.php b/tests/Feature/AuthPage/UrlListPageTest.php index 17b3b8349..9b9947669 100644 --- a/tests/Feature/AuthPage/UrlListPageTest.php +++ b/tests/Feature/AuthPage/UrlListPageTest.php @@ -86,7 +86,7 @@ public function basicUserCantDelete(): void * @see App\Http\Controllers\Dashboard\DashboardController::edit() */ #[PHPUnit\Test] - public function adminCanAccessAnotherUsersLinkEditPage(): void + public function adminCanAccessOtherUsersLinkEditPage(): void { $url = Url::factory()->create(); $response = $this->actingAs($this->adminUser()) @@ -118,7 +118,7 @@ public function adminCanAccessGuestUsersLinkEditPage(): void * @see App\Http\Controllers\Dashboard\DashboardController::edit() */ #[PHPUnit\Test] - public function basicUserCantAccessOotherUsersLinkEditPage(): void + public function basicUserCantAccessOtherUsersLinkEditPage(): void { $url = Url::factory()->create(); $response = $this->actingAs($this->basicUser()) diff --git a/tests/Feature/AuthPage/User/AccountTest.php b/tests/Feature/AuthPage/User/AccountTest.php index a79fdc127..d83138d95 100644 --- a/tests/Feature/AuthPage/User/AccountTest.php +++ b/tests/Feature/AuthPage/User/AccountTest.php @@ -63,7 +63,7 @@ public function adminCanAccessOtherUsersAccountPage(): void * @see App\Http\Controllers\Dashboard\User\UserController::edit() */ #[PHPUnit\Test] - public function basicUserCantAccessAnotherUsersAccountPage(): void + public function basicUserCantAccessOtherUsersAccountPage(): void { $response = $this->actingAs($this->basicUser()) ->get($this->getRoute($this->adminUser()->name));