We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecd5b79 commit 8fdb125Copy full SHA for 8fdb125
1 file changed
tests/system/Database/Migrations/MigrationTest.php
@@ -12,13 +12,13 @@ public function setUp()
12
public function testDBGroup()
13
{
14
$migration = new class extends Migration {
15
- protected $DBGroup = 'default';
+ protected $DBGroup = 'tests';
16
function up(){}
17
function down(){}
18
};
19
20
$dbGroup = $migration->getDBGroup();
21
22
- $this->assertEquals('default', $dbGroup);
+ $this->assertEquals('tests', $dbGroup);
23
}
24
0 commit comments