From 564f5dbf64648d496aa3b2180a4e89091dd571db Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 15 Aug 2022 23:40:41 +1200 Subject: [PATCH] Find replace fix --- tests/e2e/Services/Teams/TeamsBase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/Services/Teams/TeamsBase.php b/tests/e2e/Services/Teams/TeamsBase.php index 3299c98fa3..2404ca3243 100644 --- a/tests/e2e/Services/Teams/TeamsBase.php +++ b/tests/e2e/Services/Teams/TeamsBase.php @@ -32,7 +32,7 @@ trait TeamsBase $teamUid = $response1['body']['$id']; $teamName = $response1['body']['name']; - $teamId = ID::unique() + $teamId = ID::unique(); $response2 = $this->client->call(Client::METHOD_POST, '/teams', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'],