diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-23 22:41:10 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-23 22:41:10 +0100 |
commit | e87ada86d16043402f64ae45d75995a6cffb7c51 (patch) | |
tree | 2fbdc0b131e0b2e992d1e85acf0630e631f8d622 /tests | |
parent | 66e3211fd8a57b0fb296d1dcc980272721e9f99d (diff) | |
parent | 0a9b8242eeffa16eba84b59603be967d0bcc5bae (diff) | |
download | nextcloud-server-e87ada86d16043402f64ae45d75995a6cffb7c51.tar.gz nextcloud-server-e87ada86d16043402f64ae45d75995a6cffb7c51.zip |
Merge pull request #14416 from owncloud/setup-command
Setup command
Diffstat (limited to 'tests')
-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 +} |