From d7bb234072f52d92459b580e8cbbfe52ca9b8fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 6 Jan 2026 15:18:22 +0100 Subject: [PATCH] PR reviews --- composer.json | 2 +- tests/e2e/Services/Account/AccountBase.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index a9b70e4a0e..16544a7fc2 100644 --- a/composer.json +++ b/composer.json @@ -64,7 +64,7 @@ "utopia-php/locale": "0.8.*", "utopia-php/logger": "0.6.*", "utopia-php/messaging": "0.20.*", - "utopia-php/migration": "dev-chore-update-sdk-19 as 1.4.0", + "utopia-php/migration": "1.*.*", "utopia-php/orchestration": "0.9.*", "utopia-php/platform": "0.7.*", "utopia-php/pools": "0.8.*", diff --git a/tests/e2e/Services/Account/AccountBase.php b/tests/e2e/Services/Account/AccountBase.php index 5c03e4a31b..a0dd17435f 100644 --- a/tests/e2e/Services/Account/AccountBase.php +++ b/tests/e2e/Services/Account/AccountBase.php @@ -384,7 +384,7 @@ trait AccountBase $this->assertEquals($account['headers']['status-code'], 201); - // 20 successful requests wont get blocked + // 20 successful requests won't get blocked for ($i = 0; $i < 20; $i++) { $session = $this->client->call(Client::METHOD_POST, '/account/sessions/email', array_merge([ 'origin' => 'http://localhost', @@ -412,7 +412,7 @@ trait AccountBase $this->assertEquals($session['headers']['status-code'], 401); } - // 11th request get limited + // 11th request gets limited $session = $this->client->call(Client::METHOD_POST, '/account/sessions/email', array_merge([ 'origin' => 'http://localhost', 'content-type' => 'application/json',