From 49e9e1b9cd2840798518aed67073f01ac3eb7690 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Tue, 4 Jan 2022 16:50:48 +0100 Subject: [PATCH] fix: tests --- phpunit.xml | 2 +- tests/e2e/Services/Account/AccountBase.php | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index ceba1dcbf..2fbb75e22 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -6,7 +6,7 @@ convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" - stopOnFailure="true" + stopOnFailure="false" > diff --git a/tests/e2e/Services/Account/AccountBase.php b/tests/e2e/Services/Account/AccountBase.php index fcb9e8c8f..2b0da9965 100644 --- a/tests/e2e/Services/Account/AccountBase.php +++ b/tests/e2e/Services/Account/AccountBase.php @@ -755,7 +755,6 @@ trait AccountBase /** * Prefs size exceeded */ - $prefsObject = ["longValue" => str_repeat("🍰", 100000)]; $response = $this->client->call(Client::METHOD_PATCH, '/account/prefs', array_merge([ @@ -772,7 +771,6 @@ trait AccountBase // Now let's test the same thing, but with normal symbol instead of multi-byte cake emoji $prefsObject = ["longValue" => str_repeat("-", 100000)]; - $response = $this->client->call(Client::METHOD_PATCH, '/account/prefs', array_merge([ 'origin' => 'http://localhost', 'content-type' => 'application/json',