summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-15 13:13:27 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-15 14:55:30 +0100
commitf6c4b10189c6d76d94b0b01a440a326e6346c301 (patch)
tree426a161abc4380cbcafed3052930d0f78a0299a7 /tests
parent86f08f59d6318a45a20b74e4b2b449ddc6882419 (diff)
downloadnextcloud-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.php3
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);