Skip to content

Commit

Permalink
Fix tests for Milestones API
Browse files Browse the repository at this point in the history
  • Loading branch information
mnovozhylov committed May 25, 2018
1 parent 19547e7 commit fe6c5a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Upwork/API/Routers/Hr/MilestonesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function testActivate()
public function testApprove()
{
$router = new \Upwork\API\Routers\Hr\Milestones($this->_client);
$response = $router->approve(array());
$response = $router->approve('1234', array());

$this->_checkResponse($response);
}
Expand All @@ -87,7 +87,7 @@ public function testApprove()
public function testDelete()
{
$router = new \Upwork\API\Routers\Hr\Milestones($this->_client);
$response = $router->delete(array());
$response = $router->delete('1234');

$this->_checkResponse($response);
}
Expand Down

0 comments on commit fe6c5a7

Please sign in to comment.