]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix namespace for repair step tests
authorVincent Petry <pvince81@owncloud.com>
Thu, 26 Mar 2015 22:19:27 +0000 (23:19 +0100)
committerVincent Petry <pvince81@owncloud.com>
Thu, 26 Mar 2015 22:19:27 +0000 (23:19 +0100)
tests/lib/repair/repairinnodb.php
tests/lib/repair/repairlegacystorage.php
tests/lib/repair/repairmimetypes.php
tests/lib/repair/repairsqliteautoincrement.php

index d4039472a6bbdf81223ad3e171c619ab316e9acf..33f7a0e21366e880899a3e6978aaf9a975790e9e 100644 (file)
@@ -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;
index 4167ddff85a1bbcbfdfa69373e8edab33ee2b4b7..2df0f6b94b495c9c0082774ce012427ceeccc722 100644 (file)
@@ -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;
index 7524f887eb7da5667f4398801fdb187dfdf2929d..efae25f7e7a0a72a1edc5d728db76940db46dce7 100644 (file)
@@ -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;
index f81e08ba78ee4fa1966f2d815d2502bf17129a47..375319bb64a65220774be7ae5e55bfe96c16bc60 100644 (file)
@@ -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