Run Linter

This commit is contained in:
Bradley Schofield
2024-10-30 14:27:25 +09:00
parent bb72fd8834
commit f0c60916b4
2 changed files with 7 additions and 8 deletions
@@ -43,7 +43,7 @@ trait MigrationsBase
$this->assertEquals(202, $migration['headers']['status-code']);
$this->assertNotEmpty($migration['body']);
$this->assertNotEmpty($migration['body']['$id']);
$attempts = 0;
while ($attempts < 5) {
$response = $this->client->call(Client::METHOD_GET, '/migrations/' . $migration['body']['$id'], [
@@ -384,7 +384,7 @@ trait MigrationsBase
$this->assertNotEmpty($response['body']);
$membership = $response['body']['memberships'][0];
$this->assertEquals($user['body']['$id'], $membership['userId']);
$this->assertEquals($team['body']['$id'], $membership['teamId']);
$this->assertEquals(['owner'], $membership['roles']);
@@ -431,11 +431,11 @@ trait MigrationsBase
* Databases
*/
/**
* Storage
*/
/**
* Storage
*/
/**
* Functions
*/
}
}
@@ -2,7 +2,6 @@
namespace Tests\E2E\Services\Migrations;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideConsole;
@@ -10,4 +9,4 @@ class MigrationsConsoleClientTest extends Scope
{
use MigrationsBase;
use SideConsole;
}
}