diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-03-26 23:19:27 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-03-26 23:19:27 +0100 |
commit | cf2fd2a8259bddad9c29e546060519f9361e4cfc (patch) | |
tree | d4ad3678cd010cd2abcf88e05a038f7d8bcbb950 /tests/lib | |
parent | d082e37270f19269cd13098cb013c8543f4a1843 (diff) | |
download | nextcloud-server-cf2fd2a8259bddad9c29e546060519f9361e4cfc.tar.gz nextcloud-server-cf2fd2a8259bddad9c29e546060519f9361e4cfc.zip |
Fix namespace for repair step tests
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/repair/repairinnodb.php | 3 | ||||
-rw-r--r-- | tests/lib/repair/repairlegacystorage.php | 3 | ||||
-rw-r--r-- | tests/lib/repair/repairmimetypes.php | 3 | ||||
-rw-r--r-- | tests/lib/repair/repairsqliteautoincrement.php | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/tests/lib/repair/repairinnodb.php b/tests/lib/repair/repairinnodb.php index d4039472a6b..33f7a0e2136 100644 --- a/tests/lib/repair/repairinnodb.php +++ b/tests/lib/repair/repairinnodb.php @@ -5,13 +5,14 @@ * later. * See the COPYING-README file. */ +namespace Test\Repair; /** * Tests for the converting of MySQL tables to InnoDB engine * * @see \OC\Repair\RepairMimeTypes */ -class TestRepairInnoDB extends \Test\TestCase { +class RepairInnoDB extends \Test\TestCase { /** @var \OC\RepairStep */ private $repair; diff --git a/tests/lib/repair/repairlegacystorage.php b/tests/lib/repair/repairlegacystorage.php index 4167ddff85a..2df0f6b94b4 100644 --- a/tests/lib/repair/repairlegacystorage.php +++ b/tests/lib/repair/repairlegacystorage.php @@ -5,13 +5,14 @@ * later. * See the COPYING-README file. */ +namespace Test\Repair; /** * Tests for the converting of legacy storages to home storages. * * @see \OC\Repair\RepairLegacyStorages */ -class TestRepairLegacyStorages extends \Test\TestCase { +class RepairLegacyStorages extends \Test\TestCase { private $connection; private $config; diff --git a/tests/lib/repair/repairmimetypes.php b/tests/lib/repair/repairmimetypes.php index 7524f887eb7..efae25f7e7a 100644 --- a/tests/lib/repair/repairmimetypes.php +++ b/tests/lib/repair/repairmimetypes.php @@ -6,13 +6,14 @@ * later. * See the COPYING-README file. */ +namespace Test\Repair; /** * Tests for the converting of legacy storages to home storages. * * @see \OC\Repair\RepairMimeTypes */ -class TestRepairMimeTypes extends \Test\TestCase { +class RepairMimeTypes extends \Test\TestCase { /** @var \OC\RepairStep */ private $repair; diff --git a/tests/lib/repair/repairsqliteautoincrement.php b/tests/lib/repair/repairsqliteautoincrement.php index f81e08ba78e..375319bb64a 100644 --- a/tests/lib/repair/repairsqliteautoincrement.php +++ b/tests/lib/repair/repairsqliteautoincrement.php @@ -11,7 +11,7 @@ namespace Test\Repair; /** * Tests for fixing the SQLite id recycling */ -class TestRepairSqliteAutoincrement extends \Test\TestCase { +class RepairSqliteAutoincrement extends \Test\TestCase { /** * @var \OC\Repair\SqliteAutoincrement |