Skip to content

Commit 0533d9c

Browse files
committed
Fix incorrect env value in IntegrationTestStartedListener
Signed-off-by: Joey Smith <jsmith@webinertia.net> Signed-off-by: Joey Smith <jsmith@webinertia.net>
1 parent fd384cc commit 0533d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/Extension/IntegrationTestStartedListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function notify(Started $event): void
2727
return;
2828
}
2929

30-
if (getenv('TESTS_LAMINAS_DB_ADAPTER_DRIVER_MYSQL')) {
30+
if (getenv('TESTS_LAMINAS_DB_ADAPTER_MYSQL')) {
3131
$this->fixtureLoaders[] = new MysqlFixtureLoader();
3232
}
3333

0 commit comments

Comments
 (0)