Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php')
-rw-r--r--tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php b/tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php
index a6d193dd..836a3b09 100644
--- a/tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php
+++ b/tests/unit/lib/BackgroundJob/ExpireCredentialsTest.php
@@ -43,7 +43,11 @@ class ExpireCredentialsTest extends PHPUnit_Framework_TestCase {
$jobList = $this->getMockBuilder('\OCP\BackgroundJob\IJobList')->getMock();
/** @var \OC\BackgroundJob\JobList $jobList */
- $backgroundJob->execute($jobList);
- $this->assertTrue(true);
+ try {
+ $backgroundJob->execute($jobList);
+ }
+ catch (Exception $ex) {
+ $this->assertTrue(false);
+ }
}
}