From b1f3fdce7a0b0460e773231f459fa9fd22aeb4f5 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Tue, 18 Oct 2022 02:26:28 +0000 Subject: [PATCH] fix stats test --- tests/unit/Usage/StatsTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/Usage/StatsTest.php b/tests/unit/Usage/StatsTest.php index 0b39dfdaa..f02184139 100644 --- a/tests/unit/Usage/StatsTest.php +++ b/tests/unit/Usage/StatsTest.php @@ -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();