diff options
author | icewind1991 <icewind1991@gmail.com> | 2013-01-30 13:22:33 -0800 |
---|---|---|
committer | icewind1991 <icewind1991@gmail.com> | 2013-01-30 13:22:33 -0800 |
commit | 0cde86ac5561f468c7218e74192cb23fb4ace0c3 (patch) | |
tree | bcc43051351cb1f455f0482ee5a0a112e9052ac7 /apps/files_external/tests/dropbox.php | |
parent | 2fbf3d40900d29c04b69f0c18e4d833a312fb21c (diff) | |
parent | 6043789394252a8f9042acfe0e62c1a5fb4e73d1 (diff) | |
download | nextcloud-server-0cde86ac5561f468c7218e74192cb23fb4ace0c3.tar.gz nextcloud-server-0cde86ac5561f468c7218e74192cb23fb4ace0c3.zip |
Merge pull request #673 from owncloud/filesystem
Filecache rewrite
Diffstat (limited to 'apps/files_external/tests/dropbox.php')
-rw-r--r-- | apps/files_external/tests/dropbox.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/files_external/tests/dropbox.php b/apps/files_external/tests/dropbox.php index 304cb3ca38c..e4e598b06b0 100644 --- a/apps/files_external/tests/dropbox.php +++ b/apps/files_external/tests/dropbox.php @@ -6,7 +6,9 @@ * See the COPYING-README file. */ -class Test_Filestorage_Dropbox extends Test_FileStorage { +namespace Test\Files\Storage; + +class Dropbox extends Storage { private $config; public function setUp() { @@ -16,7 +18,7 @@ class Test_Filestorage_Dropbox extends Test_FileStorage { $this->markTestSkipped('Dropbox backend not configured'); } $this->config['dropbox']['root'] .= '/' . $id; //make sure we have an new empty folder to work in - $this->instance = new OC_Filestorage_Dropbox($this->config['dropbox']); + $this->instance = new \OC\Files\Storage\Dropbox($this->config['dropbox']); } public function tearDown() { |