aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-07-23 13:38:49 +0200
committerMorris Jobke <hey@morrisjobke.de>2020-07-23 17:11:29 +0200
commit7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9 (patch)
tree05f633cce5e0195c48e5285bdfebd478f0c3b26e
parente4144e6b36eb874d73dd6d2282a0ac0f0ee1bd63 (diff)
downloadnextcloud-server-7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9.tar.gz
nextcloud-server-7e6c0ec2845a0133dd16248b40ea2faa1df7f9c9.zip
Use assertEqualsCanonicalizing instead of deprecated assertEquals parameter
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
-rw-r--r--apps/dav/tests/unit/CalDAV/CalDavBackendTest.php4
-rw-r--r--tests/lib/L10N/FactoryTest.php4
2 files changed, 4 insertions, 4 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() {
diff --git a/tests/lib/L10N/FactoryTest.php b/tests/lib/L10N/FactoryTest.php
index 7e1fb8c8886..fb5286ebe65 100644
--- a/tests/lib/L10N/FactoryTest.php
+++ b/tests/lib/L10N/FactoryTest.php
@@ -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));
}
/**