Skip to content

Commit

Permalink
Fix checks
Browse files Browse the repository at this point in the history
  • Loading branch information
acgrid committed Jan 24, 2017
1 parent d8737fe commit e1b6b6f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Core/CoreHttpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ public function testUserHandler()
if (!isset($statistics[$api])) {
$statistics[$api] = 0;
}
$statistics[$api]++;
})
++$statistics[$api];
}),
]);

$httpClient = Mockery::mock(Client::class);
Expand All @@ -219,6 +219,7 @@ public function testUserHandler()
if (isset($options['handler']) && ($options['handler'] instanceof HandlerStack)) {
$options['handler']($request, $options);
}

return true;
})->andReturn(new Response());

Expand Down

0 comments on commit e1b6b6f

Please sign in to comment.