mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
fix(tests): Adjust unit tests to outline the schema is checked twice now
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0bf738d8cb
commit
b80692d323
1 changed files with 2 additions and 2 deletions
|
|
@ -101,10 +101,10 @@ class MigrationsTest extends \Test\TestCase {
|
|||
->method('migrateToSchema');
|
||||
|
||||
$wrappedSchema = $this->createMock(Schema::class);
|
||||
$wrappedSchema->expects($this->once())
|
||||
$wrappedSchema->expects($this->exactly(2))
|
||||
->method('getTables')
|
||||
->willReturn([]);
|
||||
$wrappedSchema->expects($this->once())
|
||||
$wrappedSchema->expects($this->exactly(2))
|
||||
->method('getSequences')
|
||||
->willReturn([]);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue