diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-08 12:58:50 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-08 12:58:50 +0200 |
commit | fe286e21caebe3fd2552f2bf403f75c43e709e57 (patch) | |
tree | 6c7b1f43fb990e2104fe85f791ca167e5b07dd5d /tests | |
parent | f5c63d7a6e86fa17e35c552b0807b9014d0dd2e5 (diff) | |
download | nextcloud-server-fe286e21caebe3fd2552f2bf403f75c43e709e57.tar.gz nextcloud-server-fe286e21caebe3fd2552f2bf403f75c43e709e57.zip |
Fix tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/DB/MigrationsTest.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/lib/DB/MigrationsTest.php b/tests/lib/DB/MigrationsTest.php index dd06b9096cc..7e201191087 100644 --- a/tests/lib/DB/MigrationsTest.php +++ b/tests/lib/DB/MigrationsTest.php @@ -102,12 +102,13 @@ class MigrationsTest extends \Test\TestCase { ->method('migrateToSchema'); $wrappedSchema = $this->createMock(Schema::class); - $wrappedSchema->expects($this->once()) + // TODO re-enable once stable14 is branched of: https://github.com/nextcloud/server/issues/10518 + /*$wrappedSchema->expects($this->once()) ->method('getTables') ->willReturn([]); $wrappedSchema->expects($this->once()) ->method('getSequences') - ->willReturn([]); + ->willReturn([]);*/ $schemaResult = $this->createMock(SchemaWrapper::class); $schemaResult->expects($this->once()) |