Fix comments

This commit is contained in:
fogelito
2022-07-14 17:56:50 +03:00
parent 1b74473421
commit bded3da5df
4 changed files with 1 additions and 7 deletions
@@ -62,7 +62,6 @@ trait TeamsBaseServer
$this->assertNotEmpty($response['body']['teamId']);
$this->assertCount(2, $response['body']['roles']);
$this->assertEquals(true, DateTime::isValid($response['body']['joined']));
$this->assertGreaterThan('2020-07-07 07:58:44', DateTime::now());
$this->assertEquals(true, $response['body']['confirm']);
$userUid = $response['body']['userId'];
+1 -1
View File
@@ -861,7 +861,7 @@ trait WebhooksBase
$this->assertNotEmpty($webhook['data']['userId']);
$this->assertNotEmpty($webhook['data']['teamId']);
$this->assertCount(2, $webhook['data']['roles']);
$this->assertEquals(false, DateTime::isValid($webhook['data']['invited']));
$this->assertEquals(true, DateTime::isValid($webhook['data']['invited']));
$this->assertEquals(('server' === $this->getSide()), $webhook['data']['confirm']);
/**