From cb8341fa5b0076aa508cd53baa68f3c037c7ffb2 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Thu, 20 Jul 2023 01:33:27 +0000 Subject: [PATCH] fix test --- tests/e2e/Services/Projects/ProjectsConsoleClientTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php b/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php index c68b854d13..e10808c11c 100644 --- a/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php +++ b/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php @@ -568,10 +568,10 @@ class ProjectsConsoleClientTest extends Scope $this->assertEquals(200, $response['headers']['status-code']); $this->assertTrue($response['body']['smtpEnabled']); $this->assertEquals('mailer@appwrite.io', $response['body']['smtpSender']); - $this->assertEquals('mail.appwrite.io', $response['body']['smtpHost']); - $this->assertEquals(25, $response['body']['smtpPort']); - $this->assertEquals('emailuser', $response['body']['smtpUsername']); - $this->assertEquals('securepassword', $response['body']['smtpPassword']); + $this->assertEquals('maildev', $response['body']['smtpHost']); + $this->assertEquals(1025, $response['body']['smtpPort']); + $this->assertEquals('user', $response['body']['smtpUsername']); + $this->assertEquals('password', $response['body']['smtpPassword']); $this->assertEquals('', $response['body']['smtpSecure']); /** Reset */