summaryrefslogtreecommitdiffstats
path: root/tests/lib/User
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-01-25 14:50:46 +0100
committerGitHub <noreply@github.com>2018-01-25 14:50:46 +0100
commit8160d0bc2aa334806e6c6e45e4f49bd9cf1a8097 (patch)
tree38a85a16e46ab97f9f8ab4afc3afbd596ce7fb24 /tests/lib/User
parentfe88e7f9264e3826e7efeb7144eb8ce0267cefe8 (diff)
parent4718d2b80d88170f3814d3f7795bda9557ef12ac (diff)
downloadnextcloud-server-8160d0bc2aa334806e6c6e45e4f49bd9cf1a8097.tar.gz
nextcloud-server-8160d0bc2aa334806e6c6e45e4f49bd9cf1a8097.zip
Merge pull request #8036 from nextcloud/phpunit6
Require PHPUnit 6.5 or higher
Diffstat (limited to 'tests/lib/User')
-rw-r--r--tests/lib/User/ManagerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/User/ManagerTest.php b/tests/lib/User/ManagerTest.php
index f6a362a5031..2ecae3a8500 100644
--- a/tests/lib/User/ManagerTest.php
+++ b/tests/lib/User/ManagerTest.php
@@ -329,7 +329,7 @@ class ManagerTest extends TestCase {
$manager = new \OC\User\Manager($this->config);
$manager->registerBackend($backend);
- $this->setExpectedException(\InvalidArgumentException::class, $exception);
+ $this->expectException(\InvalidArgumentException::class, $exception);
$manager->createUser($uid, $password);
}