Skip to content

Commit 7b1a1f6

Browse files
committed
chore: revert tests
1 parent f7ba12d commit 7b1a1f6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

tests/src/Bridge/Laravel/Console/Commands/Migrations/MigrateCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ public function it_runs_handle(): void
2727
$this::assertCount(1, $database->getTables());
2828

2929
$this->artisanCall('cycle:migrate', ['--force' => true]);
30-
$this::assertCount(5, $database->getTables());
30+
$this::assertCount(4, $database->getTables());
3131
}
3232
}

tests/src/Bridge/Laravel/Console/Commands/Migrations/ReplayCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public function it_runs_handle(): void
2727
$this::assertCount(1, $database->getTables());
2828

2929
$this->artisanCall('cycle:migrate', ['--force' => true]);
30-
$this::assertCount(5, $database->getTables());
30+
$this::assertCount(4, $database->getTables());
3131

3232
$this->artisanCall('cycle:migrate:replay', ['--force' => true]);
33-
$this::assertCount(5, $database->getTables());
33+
$this::assertCount(4, $database->getTables());
3434
}
3535
}

tests/src/Bridge/Laravel/Console/Commands/Migrations/RollbackCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function it_runs_handle(): void
2828
$this::assertCount(1, $database->getTables());
2929

3030
$this->artisanCall('cycle:migrate', ['--force' => true]);
31-
$this::assertCount(5, $database->getTables());
31+
$this::assertCount(4, $database->getTables());
3232

3333
$this->artisanCall('cycle:migrate:rollback', ['--force' => true]);
3434
$this::assertCount(1, $database->getTables());

tests/src/Bridge/Laravel/Console/Commands/Migrations/StatusCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function it_runs_handle(): void
3636
$this::assertStringContainsString('not executed yet', $output);
3737

3838
$this->artisanCall('cycle:migrate', ['--force' => true]);
39-
$this::assertCount(5, $database->getTables());
39+
$this::assertCount(4, $database->getTables());
4040

4141
$this->artisanCall('cycle:migrate:status');
4242
$output2 = Artisan::output();

0 commit comments

Comments
 (0)