diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-01-15 13:13:27 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-20 11:06:34 +0100 |
commit | 22bba7c46ac1e3ce5f8859ebd6b23040874dd858 (patch) | |
tree | 1f903bb745cef16c368cb1727d22d1a1baa40116 /tests | |
parent | c27dee56accf9f7d381de15d52e387999f1fb9c4 (diff) | |
download | nextcloud-server-22bba7c46ac1e3ce5f8859ebd6b23040874dd858.tar.gz nextcloud-server-22bba7c46ac1e3ce5f8859ebd6b23040874dd858.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); |