diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-15 13:13:27 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-15 14:55:30 +0100 |
commit | f6c4b10189c6d76d94b0b01a440a326e6346c301 (patch) | |
tree | 426a161abc4380cbcafed3052930d0f78a0299a7 /tests | |
parent | 86f08f59d6318a45a20b74e4b2b449ddc6882419 (diff) | |
download | nextcloud-server-f6c4b10189c6d76d94b0b01a440a326e6346c301.tar.gz nextcloud-server-f6c4b10189c6d76d94b0b01a440a326e6346c301.zip |
Add message key to context of logException
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/backgroundjob/job.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/lib/backgroundjob/job.php b/tests/lib/backgroundjob/job.php index 75b4865819a..12413e2c52a 100644 --- a/tests/lib/backgroundjob/job.php +++ b/tests/lib/backgroundjob/job.php @@ -28,9 +28,6 @@ class Job extends \Test\TestCase { ->disableOriginalConstructor() ->getMock(); $logger->expects($this->once()) - ->method('error') - ->with('Error while running background job (class: Test\BackgroundJob\TestJob, arguments: )'); - $logger->expects($this->once()) ->method('logException') ->with($e); |