diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-11-30 12:25:37 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-12-07 15:44:04 +0100 |
commit | 673beefb41dd7b91688d43e3c9fe507b9c7a1494 (patch) | |
tree | 9aa3c1eae296ce89b3a78dfd69e51bf9b6d03995 | |
parent | 7f0b2738bf6e7837a731fc60866d5dbbd763d1ce (diff) | |
download | nextcloud-server-673beefb41dd7b91688d43e3c9fe507b9c7a1494.tar.gz nextcloud-server-673beefb41dd7b91688d43e3c9fe507b9c7a1494.zip |
Fix MoveCalendarTest
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r-- | apps/dav/tests/unit/Command/MoveCalendarTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Command/MoveCalendarTest.php b/apps/dav/tests/unit/Command/MoveCalendarTest.php index 026a722785d..73443eacb7c 100644 --- a/apps/dav/tests/unit/Command/MoveCalendarTest.php +++ b/apps/dav/tests/unit/Command/MoveCalendarTest.php @@ -216,7 +216,7 @@ class MoveCalendarTest extends TestCase { 'destinationuid' => 'user2', ]); - $this->assertContains("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay()); + $this->assertStringContainsString("[OK] Calendar <personal> was moved from user <user> to <user2>", $commandTester->getDisplay()); } public function dataTestMoveWithDestinationNotPartOfGroup(): array { |