Skip to content

Commit

Permalink
Apply fixes from StyleCI (overtrue#127)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
overtrue authored Aug 10, 2018
1 parent 4d10444 commit 667d2ef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/Traits/HasHttpRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function testGetBaseOptions()

$this->assertSame('http://mock-uri', $object->getBaseOptions()['base_uri']);
$this->assertSame(5.0, $object->getBaseOptions()['timeout']);

// timeout overwrite
$object = \Mockery::mock(DummyTimeoutClassForHasHttpRequestTrait::class)
->makePartial()
Expand Down Expand Up @@ -150,8 +150,9 @@ public function getBaseUri()
{
return 'http://mock-uri';
}

public function getTimeout() {

public function getTimeout()
{
return 30.0;
}
}

0 comments on commit 667d2ef

Please sign in to comment.