aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/files/storage
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2016-04-06 12:14:52 +0200
committerStefan Weil <sw@weilnetz.de>2016-04-06 15:08:27 +0200
commit02e226a6b3f77c96690f873e8f71b512359e58df (patch)
tree53ff6c821f1596edd004c507822c34b6c66f36f3 /tests/lib/files/storage
parentdda739c0cc3b584d89e0745b2cd9eb9599124d28 (diff)
downloadnextcloud-server-02e226a6b3f77c96690f873e8f71b512359e58df.tar.gz
nextcloud-server-02e226a6b3f77c96690f873e8f71b512359e58df.zip
tests: Fix typos (found by codespell)
Fix also a small grammar issue. Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'tests/lib/files/storage')
-rw-r--r--tests/lib/files/storage/storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php
index f3d265df2de..ed2ea87f9d9 100644
--- a/tests/lib/files/storage/storage.php
+++ b/tests/lib/files/storage/storage.php
@@ -87,13 +87,13 @@ abstract class Storage extends \Test\TestCase {
}
$this->assertEquals(array($directory), $content);
- $this->assertFalse($this->instance->mkdir('/' . $directory)); //cant create existing folders
+ $this->assertFalse($this->instance->mkdir('/' . $directory)); //can't create existing folders
$this->assertTrue($this->instance->rmdir('/' . $directory));
$this->wait();
$this->assertFalse($this->instance->file_exists('/' . $directory));
- $this->assertFalse($this->instance->rmdir('/' . $directory)); //cant remove non existing folders
+ $this->assertFalse($this->instance->rmdir('/' . $directory)); //can't remove non existing folders
$dh = $this->instance->opendir('/');
$content = array();