1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

Fixed wrong namespaces

This commit is contained in:
Eldad Fux 2020-12-26 14:10:14 +02:00
parent 803e01f610
commit 1f6596ad16
5 changed files with 5 additions and 7 deletions

View file

@ -1,14 +1,12 @@
<?php <?php
namespace Tests\E2E\Services\Account; namespace Tests\E2E\General;
use CURLFile;
use Exception; use Exception;
use Tests\E2E\Client; use Tests\E2E\Client;
use Tests\E2E\Scopes\ProjectNone; use Tests\E2E\Scopes\ProjectNone;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideNone; use Tests\E2E\Scopes\SideNone;
use Utopia\CLI\Console;
class HTTPTest extends Scope class HTTPTest extends Scope
{ {

View file

@ -7,7 +7,7 @@ use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideClient; use Tests\E2E\Scopes\SideClient;
class FunctionsConsoleClientTest extends Scope class FunctionsCustomClientTest extends Scope
{ {
use FunctionsBase; use FunctionsBase;
use ProjectCustom; use ProjectCustom;

View file

@ -8,7 +8,7 @@ use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer; use Tests\E2E\Scopes\SideServer;
class FunctionsConsoleServerTest extends Scope class FunctionsCustomServerTest extends Scope
{ {
use FunctionsBase; use FunctionsBase;
use ProjectCustom; use ProjectCustom;

View file

@ -8,7 +8,7 @@ use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\SideClient; use Tests\E2E\Scopes\SideClient;
use Tests\E2E\Scopes\SideServer; use Tests\E2E\Scopes\SideServer;
class HealthCustomClientTest extends Scope class HealthCustomServerTest extends Scope
{ {
use HealthBase; use HealthBase;
use ProjectCustom; use ProjectCustom;

View file

@ -1,6 +1,6 @@
<?php <?php
namespace Tests\E2E\Services\Teams; namespace Tests\E2E\Services\Projects;
use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\ProjectConsole; use Tests\E2E\Scopes\ProjectConsole;