From f1a2e869a229944bfea2d5dd438f7e380341b52e Mon Sep 17 00:00:00 2001 From: fogelito Date: Tue, 3 Feb 2026 10:11:03 +0200 Subject: [PATCH] localhost setUp --- composer.lock | 12 ++++++------ tests/e2e/Scopes/Scope.php | 3 ++- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/composer.lock b/composer.lock index 10e68b7f63..7afb4ecac8 100644 --- a/composer.lock +++ b/composer.lock @@ -283,16 +283,16 @@ }, { "name": "brick/math", - "version": "0.14.3", + "version": "0.14.4", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "6af96b11de3f7d99730c118c200418c48274edb4" + "reference": "a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/6af96b11de3f7d99730c118c200418c48274edb4", - "reference": "6af96b11de3f7d99730c118c200418c48274edb4", + "url": "https://api.github.com/repos/brick/math/zipball/a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4", + "reference": "a8b53e6cc4d3a336543f042a4dfa0e3f2f2356a4", "shasum": "" }, "require": { @@ -331,7 +331,7 @@ ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.14.3" + "source": "https://github.com/brick/math/tree/0.14.4" }, "funding": [ { @@ -339,7 +339,7 @@ "type": "github" } ], - "time": "2026-02-01T15:18:05+00:00" + "time": "2026-02-02T16:57:31+00:00" }, { "name": "chillerlan/php-qrcode", diff --git a/tests/e2e/Scopes/Scope.php b/tests/e2e/Scopes/Scope.php index 8731a29672..8dafc0f511 100644 --- a/tests/e2e/Scopes/Scope.php +++ b/tests/e2e/Scopes/Scope.php @@ -19,11 +19,12 @@ abstract class Scope extends TestCase protected ?Client $client = null; protected string $endpoint = 'http://appwrite.test/v1'; + protected string $localhost = 'http://localhost/v1'; // todo: use variable protected function setUp(): void { $this->client = new Client(); - $this->client->setEndpoint($this->endpoint); + $this->client->setEndpoint($this->localhost); $format = System::getEnv('_APP_E2E_RESPONSE_FORMAT'); if (!empty($format)) {