diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-07-23 13:38:49 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2020-07-23 17:11:29 +0200 |
commit | 7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9 (patch) | |
tree | 05f633cce5e0195c48e5285bdfebd478f0c3b26e /apps | |
parent | e4144e6b36eb874d73dd6d2282a0ac0f0ee1bd63 (diff) | |
download | nextcloud-server-7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9.tar.gz nextcloud-server-7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9.zip |
Use assertEqualsCanonicalizing instead of deprecated assertEquals parameter
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/CalDavBackendTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php index 76335f00bfe..bd6a8856d51 100644 --- a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php +++ b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php @@ -279,7 +279,7 @@ EOD; $this->assertCount(0, $calendarObjects); } - + public function testMultipleCalendarObjectsWithSameUID() { $this->expectException(\Sabre\DAV\Exception\BadRequest::class); $this->expectExceptionMessage('Calendar object with uid already exists in this calendar collection.'); @@ -441,7 +441,7 @@ EOD; $expectedEventsInResult = array_map(function ($index) use ($events) { return $events[$index]; }, $expectedEventsInResult); - $this->assertEquals($expectedEventsInResult, $result, '', 0.0, 10, true); + $this->assertEqualsCanonicalizing($expectedEventsInResult, $result); } public function testGetCalendarObjectByUID() { |