Skip to content

Commit 2bf2062

Browse files
committed
correctly used alias in integration tests
1 parent 2663dc5 commit 2bf2062

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Integration/EnvironmentAwareIntegrationTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ public static function connectionAliases(): iterable
7474
$tbr = [];
7575
foreach ($connections as $i => $connection) {
7676
$uri = Uri::create($connection);
77-
$tbr[] = [$uri->getScheme().'_'.$i];
77+
$alias = $uri->getScheme().'_'.$i;
78+
$tbr[$alias] = [$alias];
7879
}
7980

8081
/** @var non-empty-array<array-key, array{0: string}> */

0 commit comments

Comments
 (0)