Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Dec 23, 2024
1 parent bf43bfc commit a7f1b16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Feature/AuthPage/UrlListPageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/AuthPage/User/AccountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit a7f1b16

Please sign in to comment.