1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +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
namespace Tests\E2E\Services\Account;
namespace Tests\E2E\General;
use CURLFile;
use Exception;
use Tests\E2E\Client;
use Tests\E2E\Scopes\ProjectNone;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideNone;
use Utopia\CLI\Console;
class HTTPTest extends Scope
{

View file

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

View file

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

View file

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

View file

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