From 8c5220f4559cff3c79da38bd2c333ea2cafe0899 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Tue, 21 Feb 2023 19:43:59 +1300 Subject: [PATCH] Remove redundant test --- tests/e2e/Services/Users/UsersBase.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/e2e/Services/Users/UsersBase.php b/tests/e2e/Services/Users/UsersBase.php index 416be18079..ae523a06f0 100644 --- a/tests/e2e/Services/Users/UsersBase.php +++ b/tests/e2e/Services/Users/UsersBase.php @@ -1089,14 +1089,6 @@ trait UsersBase $this->assertEquals($response['headers']['status-code'], 400); - $response = $this->client->call(Client::METHOD_GET, '/users/' . $data['userId'] . '/logs', array_merge([ - 'content-type' => 'application/json', - 'x-appwrite-project' => $this->getProject()['$id'], - ], $this->getHeaders()), [ - 'queries' => ['offset(5001)'] - ]); - - $this->assertEquals($response['headers']['status-code'], 400); $response = $this->client->call(Client::METHOD_GET, '/users/' . $data['userId'] . '/logs', array_merge([ 'content-type' => 'application/json',