File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
tests/src/Bridge/Laravel/Console/Commands/Migrations Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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 ());
Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments