summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit
diff options
context:
space:
mode:
authorluz paz <luzpaz@pm.me>2022-07-26 17:21:57 -0400
committerluz paz <luzpaz@pm.me>2022-07-26 17:40:10 -0400
commitd4637ef4d8da53f9b13ce97b06fcf5151db0e499 (patch)
treee867e6ca6acb7fe673a83a0fcf9baafe59981d74 /apps/dav/tests/unit
parent97462295587f4016066264edb6eed5d5e17903f3 (diff)
downloadnextcloud-server-d4637ef4d8da53f9b13ce97b06fcf5151db0e499.tar.gz
nextcloud-server-d4637ef4d8da53f9b13ce97b06fcf5151db0e499.zip
Fix typos in apps/dav subdirectory
Found via `codespell -q 3 -S l10n -L jus ./apps/dav` Signed-off-by: luz paz <luzpaz@github.com>
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r--apps/dav/tests/unit/CalDAV/Integration/ExternalCalendarTest.php6
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/FileTest.php2
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Integration/ExternalCalendarTest.php b/apps/dav/tests/unit/CalDAV/Integration/ExternalCalendarTest.php
index 0131ab443a8..d2dbdeac493 100644
--- a/apps/dav/tests/unit/CalDAV/Integration/ExternalCalendarTest.php
+++ b/apps/dav/tests/unit/CalDAV/Integration/ExternalCalendarTest.php
@@ -40,13 +40,13 @@ class ExternalCalendarTest extends TestCase {
$this->assertEquals('app-generated--example-app-id--calendar-uri-in-backend',
$this->abstractExternalCalendar->getName());
- // Check that the method is final and can't be overriden by other classes
+ // Check that the method is final and can't be overridden by other classes
$reflectionMethod = new \ReflectionMethod(ExternalCalendar::class, 'getName');
$this->assertTrue($reflectionMethod->isFinal());
}
public function testSetName():void {
- // Check that the method is final and can't be overriden by other classes
+ // Check that the method is final and can't be overridden by other classes
$reflectionMethod = new \ReflectionMethod(ExternalCalendar::class, 'setName');
$this->assertTrue($reflectionMethod->isFinal());
@@ -57,7 +57,7 @@ class ExternalCalendarTest extends TestCase {
}
public function createDirectory():void {
- // Check that the method is final and can't be overriden by other classes
+ // Check that the method is final and can't be overridden by other classes
$reflectionMethod = new \ReflectionMethod(ExternalCalendar::class, 'createDirectory');
$this->assertTrue($reflectionMethod->isFinal());
diff --git a/apps/dav/tests/unit/Connector/Sabre/FileTest.php b/apps/dav/tests/unit/Connector/Sabre/FileTest.php
index 9870a62845c..6a954378d02 100644
--- a/apps/dav/tests/unit/Connector/Sabre/FileTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/FileTest.php
@@ -316,7 +316,7 @@ class FileTest extends TestCase {
* @param string $viewRoot root to use for the view
* @param null|Request $request the HTTP request
*
- * @return null|string of the PUT operaiton which is usually the etag
+ * @return null|string of the PUT operation which is usually the etag
*/
private function doPut($path, $viewRoot = null, Request $request = null) {
$view = \OC\Files\Filesystem::getView();