Skip to content

Commit 24cca70

Browse files
#71: composer fix
1 parent b9d79d1 commit 24cca70

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/RollbarTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,11 @@ public function testLogListener()
114114
$clientMock = \Mockery::mock('Rollbar\RollbarLogger');
115115

116116
$clientMock->shouldReceive('log')->times(2)->andReturn($responseMock);
117-
$clientMock->shouldReceive('log')->times(1)->with('error', $exception, ['foo' => 'bar'])->andReturn($responseMock);
117+
$clientMock->
118+
shouldReceive('log')->
119+
times(1)->
120+
with('error', $exception, ['foo' => 'bar'])->
121+
andReturn($responseMock);
118122

119123
$handlerMock = \Mockery::mock('Rollbar\Laravel\RollbarLogHandler', [$clientMock, $this->app]);
120124

0 commit comments

Comments
 (0)