From: Vincent Petry Date: Thu, 26 Mar 2015 22:19:27 +0000 (+0100) Subject: Fix namespace for repair step tests X-Git-Tag: v8.1.0alpha1~145^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cf2fd2a8259bddad9c29e546060519f9361e4cfc;p=nextcloud-server.git Fix namespace for repair step tests --- 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