diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-25 14:50:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-25 14:50:46 +0100 |
commit | 8160d0bc2aa334806e6c6e45e4f49bd9cf1a8097 (patch) | |
tree | 38a85a16e46ab97f9f8ab4afc3afbd596ce7fb24 /tests/lib/User | |
parent | fe88e7f9264e3826e7efeb7144eb8ce0267cefe8 (diff) | |
parent | 4718d2b80d88170f3814d3f7795bda9557ef12ac (diff) | |
download | nextcloud-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.php | 2 |
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); } |