From 640b9c319406b6b9709b89a1fe3c5eed61541cf3 Mon Sep 17 00:00:00 2001 From: kcasas Date: Thu, 20 Apr 2017 12:41:20 +0800 Subject: [PATCH] made sure app installations fake id doesn't give zero --- tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php b/tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php index 4c48940d..fa75e125 100644 --- a/tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php +++ b/tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php @@ -92,7 +92,7 @@ public function testUpdate() ] ]; - $id = $faker->randomNumber(); + $id = $faker->randomNumber(null, true); $this->assertEndpointCalled(function () use ($id, $params) { $this->client->appInstallations()->update($id, $params);