Skip to content

Commit 3d8b04b

Browse files
authored
Merge pull request #8447 from kenjis/fix-DatabaseTestTrait-SQLite3-memory-seeder-bug
fix: DB Seeder may use wrong DB connection during testing
2 parents 5bbf3af + 8c4695a commit 3d8b04b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/Test/DatabaseTestTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function loadDependencies()
7979
$config = new Migrations();
8080
$config->enabled = true;
8181

82-
$this->migrations = Services::migrations($config, $this->db);
82+
$this->migrations = Services::migrations($config, $this->db, false);
8383
$this->migrations->setSilent(false);
8484
}
8585

0 commit comments

Comments
 (0)