diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-21 20:51:50 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-23 16:44:40 +0100 |
commit | 1fd1b355e46aba83917c81ddc91a369598f9e6e1 (patch) | |
tree | 098e4f25ea3c40ad4b424223f788cfc0d06a3408 /tests/lib/setup.php | |
parent | f54cd14c7e7ea3a8e63ce35b3ac2c3ff5db984f5 (diff) | |
download | nextcloud-server-1fd1b355e46aba83917c81ddc91a369598f9e6e1.tar.gz nextcloud-server-1fd1b355e46aba83917c81ddc91a369598f9e6e1.zip |
Fix namespace of OC_Setup -> \OC\Setup
Diffstat (limited to 'tests/lib/setup.php')
-rw-r--r-- | tests/lib/setup.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/setup.php b/tests/lib/setup.php index a221943c016..db6f0e7a05f 100644 --- a/tests/lib/setup.php +++ b/tests/lib/setup.php @@ -12,14 +12,14 @@ class Test_OC_Setup extends \Test\TestCase { /** @var IConfig */ protected $config; - /** @var \OC_Setup */ + /** @var \OC\Setup */ protected $setupClass; protected function setUp() { parent::setUp(); $this->config = $this->getMock('\OCP\IConfig'); - $this->setupClass = $this->getMock('\OC_Setup', ['class_exists', 'is_callable'], [$this->config]); + $this->setupClass = $this->getMock('\OC\Setup', ['class_exists', 'is_callable'], [$this->config]); } public function testGetSupportedDatabasesWithOneWorking() { @@ -115,4 +115,4 @@ class Test_OC_Setup extends \Test\TestCase { ); $this->assertTrue($result); } -}
\ No newline at end of file +} |