Skip to content

Commit

Permalink
rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gaalferov committed Apr 17, 2023
1 parent 28479cb commit 6179ce1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Api/General/PermissionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function testValidGetResources(): void
$this->assertArrayHasKey('resources', array_shift($responseData));
}

public function test401InvalidGetList(): void
public function test401InvalidGetResources(): void
{
$this->permission->expects($this->once())
->method('httpGet')
Expand All @@ -74,7 +74,7 @@ public function test401InvalidGetList(): void
$this->permission->getResources(self::FAKE_ACCOUNT_ID);
}

public function test403InvalidGetList(): void
public function test403InvalidGetResources(): void
{
$this->permission->expects($this->once())
->method('httpGet')
Expand Down

0 comments on commit 6179ce1

Please sign in to comment.