]> source.dussan.org Git - nextcloud-server.git/commitdiff
Use assertEqualsCanonicalizing instead of deprecated assertEquals parameter
authorMorris Jobke <hey@morrisjobke.de>
Thu, 23 Jul 2020 11:38:49 +0000 (13:38 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Thu, 23 Jul 2020 15:11:29 +0000 (17:11 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
apps/dav/tests/unit/CalDAV/CalDavBackendTest.php
tests/lib/L10N/FactoryTest.php

index 76335f00bfe1335129fbff104e3d9b7eb6d9a8fa..bd6a8856d51983ed157f70fc04fcfffa6c423fea 100644 (file)
@@ -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() {
index 7e1fb8c888660b20f994fd0927680273007a6b99..fb5286ebe65e6c6df9b618dbc55af5267935b528 100644 (file)
@@ -329,7 +329,7 @@ class FactoryTest extends TestCase {
                        ->with($app)
                        ->willReturn(\OC::$SERVERROOT . '/tests/data/l10n/');
 
-               $this->assertEquals(['cs', 'de', 'en', 'ru'], $factory->findAvailableLanguages($app), '', 0.0, 10, true);
+               $this->assertEqualsCanonicalizing(['cs', 'de', 'en', 'ru'], $factory->findAvailableLanguages($app));
        }
 
        public function dataLanguageExists() {
@@ -360,7 +360,7 @@ class FactoryTest extends TestCase {
                        ->with('theme')
                        ->willReturn('abc');
 
-               $this->assertEquals(['en', 'zz'], $factory->findAvailableLanguages($app), '', 0.0, 10, true);
+               $this->assertEqualsCanonicalizing(['en', 'zz'], $factory->findAvailableLanguages($app));
        }
 
        /**