From 614285f1ae1137ad086c171b8a709b30c06f6663 Mon Sep 17 00:00:00 2001 From: fogelito Date: Tue, 16 Sep 2025 11:29:13 +0300 Subject: [PATCH] Add Scope for tests --- .../TablesDB/Transactions/TransactionsConsoleClientTest.php | 3 ++- .../TablesDB/Transactions/TransactionsCustomClientTest.php | 3 ++- .../TablesDB/Transactions/TransactionsCustomServerTest.php | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsConsoleClientTest.php b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsConsoleClientTest.php index 553c620f20..2159390fa2 100644 --- a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsConsoleClientTest.php +++ b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsConsoleClientTest.php @@ -3,9 +3,10 @@ namespace Tests\E2E\Services\Databases\TablesDB\Transactions; use Tests\E2E\Scopes\ProjectCustom; +use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\SideConsole; -class TransactionsConsoleClientTest +class TransactionsConsoleClientTest extends Scope { use TransactionsBase; use ProjectCustom; diff --git a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomClientTest.php b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomClientTest.php index 3b7355faaf..732537fc7b 100644 --- a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomClientTest.php +++ b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomClientTest.php @@ -3,9 +3,10 @@ namespace Tests\E2E\Services\Databases\TablesDB\Transactions; use Tests\E2E\Scopes\ProjectCustom; +use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\SideClient; -class TransactionsCustomClientTest +class TransactionsCustomClientTest extends Scope { use TransactionsBase; use ProjectCustom; diff --git a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomServerTest.php b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomServerTest.php index 01d4a8d057..57588788b1 100644 --- a/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomServerTest.php +++ b/tests/e2e/Services/Databases/TablesDB/Transactions/TransactionsCustomServerTest.php @@ -3,9 +3,10 @@ namespace Tests\E2E\Services\Databases\TablesDB\Transactions; use Tests\E2E\Scopes\ProjectCustom; +use Tests\E2E\Scopes\Scope; use Tests\E2E\Scopes\SideServer; -class TransactionsCustomServerTest +class TransactionsCustomServerTest extends Scope { use TransactionsBase; use ProjectCustom;