diff options
Diffstat (limited to 'apps/files_external/tests/sftp.php')
-rw-r--r-- | apps/files_external/tests/sftp.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/tests/sftp.php b/apps/files_external/tests/sftp.php index 16964e20878..efea7f075ff 100644 --- a/apps/files_external/tests/sftp.php +++ b/apps/files_external/tests/sftp.php @@ -33,6 +33,7 @@ class SFTP extends Storage { } $this->config['sftp']['root'] .= '/' . $id; //make sure we have an new empty folder to work in $this->instance = new \OC\Files\Storage\SFTP($this->config['sftp']); + $this->instance->mkdir('/'); } public function tearDown() { @@ -40,4 +41,4 @@ class SFTP extends Storage { $this->instance->rmdir('/'); } } -}
\ No newline at end of file +} |