diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-07-05 15:46:25 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-07-05 15:46:25 +0200 |
commit | 163e8774a40bf35a650b41f1af415f89397511a5 (patch) | |
tree | 618a54b17f6e329d4147cb8b1ac8e2b97385b21e /tests | |
parent | bbfc044ac5708900f6c6d246a88b656a0bb1292f (diff) | |
download | nextcloud-server-163e8774a40bf35a650b41f1af415f89397511a5.tar.gz nextcloud-server-163e8774a40bf35a650b41f1af415f89397511a5.zip |
Fix autoloader and namespace test
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/DB/MigrationsTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/DB/MigrationsTest.php b/tests/lib/DB/MigrationsTest.php index a255cd1b596..9c06fe4cec5 100644 --- a/tests/lib/DB/MigrationsTest.php +++ b/tests/lib/DB/MigrationsTest.php @@ -51,7 +51,7 @@ class MigrationsTest extends \Test\TestCase { $this->assertEquals('core', $this->migrationService->getApp()); $this->assertEquals(\OC::$SERVERROOT . '/core/Migrations', $this->migrationService->getMigrationsDirectory()); - $this->assertEquals('OC\Migrations', $this->migrationService->getMigrationsNamespace()); + $this->assertEquals('OC\Core\Migrations', $this->migrationService->getMigrationsNamespace()); $this->assertEquals('test_oc_migrations', $this->migrationService->getMigrationsTableName()); } |