fix(tests): Adjust unit tests to outline the schema is checked twice now

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/39506/head
Joas Schilling 11 months ago
parent 0bf738d8cb
commit b80692d323
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205

@ -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…
Cancel
Save