diff --git a/tests/e2e/Services/GraphQL/AccountTest.php b/tests/e2e/Services/GraphQL/AccountTest.php index 970d009bac..389fa56290 100644 --- a/tests/e2e/Services/GraphQL/AccountTest.php +++ b/tests/e2e/Services/GraphQL/AccountTest.php @@ -63,7 +63,7 @@ class AccountTest extends Scope $this->assertArrayNotHasKey('errors', $session['body']); $this->assertIsArray($session['body']['data']); - $this->assertIsArray($session['body']['data']['accountCreateEmailSession']); + $this->assertIsArray($session['body']['data']['accountCreateEmailPasswordSession']); $cookie = $session['cookies']['a_session_' . $this->getProject()['$id']]; $this->assertNotEmpty($cookie); diff --git a/tests/e2e/Services/GraphQL/Base.php b/tests/e2e/Services/GraphQL/Base.php index 0396895749..4cf63a3fad 100644 --- a/tests/e2e/Services/GraphQL/Base.php +++ b/tests/e2e/Services/GraphQL/Base.php @@ -1186,7 +1186,7 @@ trait Base }'; case self::$CREATE_ACCOUNT_SESSION: return 'mutation createAccountEmailSession($email: String!, $password: String!){ - accountCreateEmailSession(email: $email, password: $password) { + accountCreateEmailPasswordSession(email: $email, password: $password) { _id userId expire diff --git a/tests/e2e/Services/GraphQL/BatchTest.php b/tests/e2e/Services/GraphQL/BatchTest.php index 7082d23677..55bce6eae3 100644 --- a/tests/e2e/Services/GraphQL/BatchTest.php +++ b/tests/e2e/Services/GraphQL/BatchTest.php @@ -287,7 +287,7 @@ class BatchTest extends Scope accountCreate(userId: $userId, email: $email, password: $password, name: $name) { name } - accountCreateEmailSession(email: $email, password: $password) { + accountCreateEmailPasswordSession(email: $email, password: $password) { expire } }', @@ -308,7 +308,7 @@ class BatchTest extends Scope $this->assertIsArray($response['body']['data']); $this->assertArrayNotHasKey('errors', $response['body']); $this->assertArrayHasKey('accountCreate', $response['body']['data']); - $this->assertArrayHasKey('accountCreateEmailSession', $response['body']['data']); + $this->assertArrayHasKey('accountCreateEmailPasswordSession', $response['body']['data']); $this->assertEquals('Tester', $response['body']['data']['accountCreate']['name']); }