diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-19 08:59:37 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-19 08:59:37 +0200 |
commit | a9f24a74a238536c787047b3f2950510738902da (patch) | |
tree | 90300c112280eb7634417b7d8d9c2a190a6cdfc6 | |
parent | d19d6533dd8061f130e50fc55943cdcebc923fdd (diff) | |
download | nextcloud-server-a9f24a74a238536c787047b3f2950510738902da.tar.gz nextcloud-server-a9f24a74a238536c787047b3f2950510738902da.zip |
Fix namespace in repair/
-rw-r--r-- | tests/lib/repair/RepairCollationTest.php (renamed from tests/lib/repair/repaircollation.php) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/lib/repair/repaircollation.php b/tests/lib/repair/RepairCollationTest.php index 4efa8ccc552..2e304a74abc 100644 --- a/tests/lib/repair/repaircollation.php +++ b/tests/lib/repair/RepairCollationTest.php @@ -1,4 +1,7 @@ <?php + +namespace Test\Repair; + use OCP\Migration\IOutput; /** @@ -25,7 +28,7 @@ class TestCollationRepair extends \OC\Repair\Collation { * * @see \OC\Repair\RepairMimeTypes */ -class TestRepairCollation extends \Test\TestCase { +class RepairCollationTest extends \Test\TestCase { /** * @var TestCollationRepair |