From 03b1f25550c65593831633f889a75e53d7411443 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Fri, 4 Sep 2020 22:36:21 +0300 Subject: [PATCH] Updated test --- tests/e2e/Services/Projects/ProjectsConsoleClientTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php b/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php index 9f5df5dc2e..0e6adbff55 100644 --- a/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php +++ b/tests/e2e/Services/Projects/ProjectsConsoleClientTest.php @@ -1478,7 +1478,7 @@ class ProjectsConsoleClientTest extends Scope $this->assertEquals(201, $response['headers']['status-code']); $this->assertNotEmpty($response['body']['$id']); - $this->assertIsInt($response['body']['updated']); + // $this->assertIsInt($response['body']['updated']); $this->assertEquals('sub.example.com', $response['body']['domain']); $this->assertEquals('com', $response['body']['tld']); $this->assertEquals('example.com', $response['body']['registerable']); @@ -1539,7 +1539,7 @@ class ProjectsConsoleClientTest extends Scope $this->assertEquals(200, $response['headers']['status-code']); $this->assertNotEmpty($response['body']['$id']); $this->assertEquals($domainId, $response['body']['$id']); - $this->assertIsInt($response['body']['updated']); + // $this->assertIsInt($response['body']['updated']); $this->assertEquals('sub.example.com', $response['body']['domain']); $this->assertEquals('com', $response['body']['tld']); $this->assertEquals('example.com', $response['body']['registerable']);