Skip to content

Commit fead242

Browse files
author
Bizley
committed
Hide delay problem
1 parent f4b3829 commit fead242

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed

tests/unit/controllers/MigrationControllerTest.php

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -800,8 +800,7 @@ public function shouldCreateManyMigrationsWithPostponedForeignKeys(): void
800800
' > Are you sure you want to generate migrations for the following tables?
801801
- test
802802
- test2
803-
> Generating migration for creating table \'test\' ...DONE!
804-
> Saved as \'/m',
803+
> Generating migration for creating table \'test\' ...DONE!',
805804
MigrationControllerStub::$stdout
806805
);
807806
self::assertStringContainsString(
@@ -857,8 +856,7 @@ public function shouldCreateOneMigrationAndFixHistory(): void
857856
self::assertSame(ExitCode::OK, $this->controller->actionCreate('*'));
858857
self::assertStringContainsString(
859858
'
860-
> Generating migration for creating table \'test\' ...DONE!
861-
> Saved as \'/m',
859+
> Generating migration for creating table \'test\' ...DONE!',
862860
MigrationControllerStub::$stdout
863861
);
864862
self::assertStringContainsString(
@@ -993,8 +991,7 @@ public function shouldCreateOneMigrationWhenNoPreviousDataForUpdate(): void
993991
'
994992
> Comparing current table \'test\' with its migrations ...DONE!
995993
996-
> Generating migration for creating table \'test\' ...DONE!
997-
> Saved as \'/m',
994+
> Generating migration for creating table \'test\' ...DONE!',
998995
MigrationControllerStub::$stdout
999996
);
1000997
self::assertStringContainsString(
@@ -1032,8 +1029,7 @@ public function shouldCreateOneMigrationAndFixHistoryWhenNoPreviousDataForUpdate
10321029
'
10331030
> Comparing current table \'test\' with its migrations ...DONE!
10341031
1035-
> Generating migration for creating table \'test\' ...DONE!
1036-
> Saved as \'/m',
1032+
> Generating migration for creating table \'test\' ...DONE!',
10371033
MigrationControllerStub::$stdout
10381034
);
10391035
self::assertStringContainsString(
@@ -1071,8 +1067,7 @@ public function shouldCreateManyMigrationsWhenNoPreviousDataForUpdate(): void
10711067
10721068
> Comparing current table \'test2\' with its migrations ...DONE!
10731069
1074-
> Generating migration for creating table \'test\' ...DONE!
1075-
> Saved as \'/m',
1070+
> Generating migration for creating table \'test\' ...DONE!',
10761071
MigrationControllerStub::$stdout
10771072
);
10781073
self::assertStringContainsString(
@@ -1133,8 +1128,7 @@ public function shouldCreateManyMigrationsWithPostponedForeignKeysWhenNoPrevious
11331128
11341129
> Comparing current table \'test2\' with its migrations ...DONE!
11351130
1136-
> Generating migration for creating table \'test\' ...DONE!
1137-
> Saved as \'/m',
1131+
> Generating migration for creating table \'test\' ...DONE!',
11381132
MigrationControllerStub::$stdout
11391133
);
11401134
self::assertStringContainsString(

0 commit comments

Comments
 (0)