1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

fix stats test

This commit is contained in:
Damodar Lohani 2022-10-18 02:26:28 +00:00
parent e96c0b1127
commit b1f3fdce7a

View file

@ -38,10 +38,12 @@ class StatsTest extends TestCase
{
$this->object
->setParam('projectId', 'appwrite_test')
->setParam('projectInternalId', 1)
->setParam('networkRequestSize', 100)
;
$this->assertEquals('appwrite_test', $this->object->getParam('projectId'));
$this->assertEquals(1, $this->object->getParam('projectInternalId'));
$this->assertEquals(100, $this->object->getParam('networkRequestSize'));
$this->object->submit();