Skip to content

Commit af8d6a3

Browse files
committed
test: fix Registrar for DB Config
1 parent cf646b8 commit af8d6a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_support/Config/Registrar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public static function Database()
136136

137137
// Under GitHub Actions, we can set an ENV var named 'DB'
138138
// so that we can test against multiple databases.
139-
if (($group = getenv('DB')) && ! isset(self::$dbConfig[$group])) {
139+
if (($group = getenv('DB')) && isset(self::$dbConfig[$group])) {
140140
$config['tests'] = self::$dbConfig[$group];
141141
}
142142

0 commit comments

Comments
 (0)