Skip to content

Commit

Permalink
made sure app installations fake id doesn't give zero
Browse files Browse the repository at this point in the history
  • Loading branch information
kcasas committed Apr 20, 2017
1 parent 35b308d commit 640b9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Zendesk/API/UnitTests/Core/AppInstallationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 640b9c3

Please sign in to comment.