Skip to content

Commit

Permalink
BUGFIX: Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Jan 12, 2024
1 parent 5e1ccaf commit 1ac5c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Integration/DoctrineEventStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function test_status_returns_setup_required_status_if_event_table_require
$connection = self::connection();
$eventStore = new DoctrineEventStore($connection, self::eventTableName());
$eventStore->setup();
$connection->executeStatement('ALTER TABLE ' . $connection->quote(self::eventTableName()) . ' RENAME COLUMN metadata TO metadata_renamed');
$connection->executeStatement('ALTER TABLE ' . self::eventTableName() . ' RENAME COLUMN metadata TO metadata_renamed');
self::assertSame($eventStore->status()->type, StatusType::SETUP_REQUIRED);
}

Expand Down

0 comments on commit 1ac5c1e

Please sign in to comment.