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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-11-27 18:42:48 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-12-07 17:44:03 +0300
commit6b7731a852630db901409f1ee65133c5a2c13a16 (patch)
tree87c653286b267bbcb1b27366c6e66b63a2758ec2 /tests
parent988ce1374c6fa54d2ecbcd2a7fdc056398382ac0 (diff)
Move to new phpunit
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/IntegrityCheck/CheckerTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/IntegrityCheck/CheckerTest.php b/tests/lib/IntegrityCheck/CheckerTest.php
index c79f192a7fb..631aec7c6bf 100644
--- a/tests/lib/IntegrityCheck/CheckerTest.php
+++ b/tests/lib/IntegrityCheck/CheckerTest.php
@@ -110,7 +110,7 @@ class CheckerTest extends TestCase {
public function testWriteAppSignatureWrongPermissions() {
$this->expectException(\Exception::class);
- $this->expectExceptionMessageRegExp('/[a-zA-Z\\/_-]+ is not writable/');
+ $this->expectExceptionMessageMatches('/[a-zA-Z\\/_-]+ is not writable/');
$this->fileAccessHelper
->expects($this->once())
@@ -507,7 +507,7 @@ class CheckerTest extends TestCase {
public function testWriteCoreSignatureWrongPermissions() {
$this->expectException(\Exception::class);
- $this->expectExceptionMessageRegExp('/[a-zA-Z\\/_-]+ is not writable/');
+ $this->expectExceptionMessageMatches('/[a-zA-Z\\/_-]+ is not writable/');
$this->fileAccessHelper
->expects($this->at(0))