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/Settings | |
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/Settings')
-rw-r--r-- | tests/Settings/Activity/SecurityProviderTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Settings/Activity/SecurityProviderTest.php b/tests/Settings/Activity/SecurityProviderTest.php index 552548984d7..0623779735b 100644 --- a/tests/Settings/Activity/SecurityProviderTest.php +++ b/tests/Settings/Activity/SecurityProviderTest.php @@ -62,7 +62,7 @@ class SecurityProviderTest extends TestCase { $event->expects($this->once()) ->method('getType') ->willReturn('comments'); - $this->setExpectedException(InvalidArgumentException::class); + $this->expectException(InvalidArgumentException::class); $this->provider->parse($lang, $event); } |