Skip to content

Commit

Permalink
2288 - Update postFlightCheckFail test to remove dynamic message
Browse files Browse the repository at this point in the history
  • Loading branch information
ajibarra committed Jun 10, 2024
1 parent 3578775 commit aef52b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Phinx/Migration/AbstractMigrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public function testTableMethod()
public function testPostFlightCheckFail()
{
// stub migration
$migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', ['mockenv', 20230102030405]);
$migrationStub = $this->getMockForAbstractClass('\Phinx\Migration\AbstractMigration', ['mockenv', 20230102030405], 'PostFlightCheck');

$adapterStub = $this->getMockBuilder('\Phinx\Db\Adapter\MysqlAdapter')
->setConstructorArgs([[]])
Expand All @@ -280,7 +280,7 @@ public function testPostFlightCheckFail()
$table->addColumn('column1', 'integer', ['null' => true]);

$this->expectException(RuntimeException::class);
$this->expectExceptionMessage(sprintf('Migration %s_%s has pending actions after execution!', $migrationStub->getVersion(), $migrationStub->getName()));
$this->expectExceptionMessage('Migration 20230102030405_PostFlightCheck has pending actions after execution!');

$migrationStub->postFlightCheck();
}
Expand Down

0 comments on commit aef52b4

Please sign in to comment.