Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Dec 21, 2023
1 parent 3cc5faa commit daa3b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Common/Command/AbstractCreateCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ public function testExecuteInputPath(): void

$this->assertSame(Command::SUCCESS, $exitCode);
$this->assertStringContainsString('Create new migration y/n:', $output);
$this->assertMatchesRegularExpression("/^\s+M\d{12}Post$/m", $output);
$this->assertMatchesRegularExpression("/\s+M\d{12}Post/m", $output);
$this->assertStringContainsString('[OK] New migration created successfully.', $output);
$this->assertCount(1, FileHelper::findFiles($path));
}
Expand Down

0 comments on commit daa3b24

Please sign in to comment.