Skip to content

Commit

Permalink
Corrige testes
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliadeveza committed Mar 16, 2016
1 parent 9689713 commit d9d4cc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Gerencianet/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ public function setUp()
*/
public function shouldAuthorizeSuccessfully()
{
$request = new Request($this->options);
$this->options['certified_path'] = __DIR__.'ca.crt';

$this->options['certified_path'] = __DIR__.'/ca.crt';
$request = new Request($this->options);

$client = $this->getMockBuilder('Client')
->setMethods(array('send', 'createRequest'))
->setMethods(array('send', 'createRequest', 'setDefaultOption'))
->getMock();

$response = $this->getMockBuilder('Response')
Expand Down

0 comments on commit d9d4cc5

Please sign in to comment.