From 26b6c12f809cd143cbd1e64ce8ea1952d8e08f06 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Mon, 24 Feb 2020 17:16:31 +0200 Subject: [PATCH] Fixed test --- tests/unit/Network/Validators/CNAMETest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/Network/Validators/CNAMETest.php b/tests/unit/Network/Validators/CNAMETest.php index b57de24bd0..98a59e674e 100644 --- a/tests/unit/Network/Validators/CNAMETest.php +++ b/tests/unit/Network/Validators/CNAMETest.php @@ -28,7 +28,7 @@ class CNAMETest extends TestCase $this->assertEquals($this->object->isValid(false), false); $this->assertEquals($this->object->isValid('test1.appwrite.io'), true); $this->assertEquals($this->object->isValid('test1.appwrite.io'), true); - $this->assertEquals($this->object->isValid('test1.appwrite.com'), false); - $this->assertEquals($this->object->isValid('test1.appwrite.com'), false); + $this->assertEquals($this->object->isValid('test1.appwrite.org'), false); + $this->assertEquals($this->object->isValid('test1.appwrite.org'), false); } } \ No newline at end of file