Skip to content

Commit

Permalink
Merge pull request #8447 from kenjis/fix-DatabaseTestTrait-SQLite3-me…
Browse files Browse the repository at this point in the history
…mory-seeder-bug

fix: DB Seeder may use wrong DB connection during testing
  • Loading branch information
kenjis authored Jan 24, 2024
2 parents 5bbf3af + 8c4695a commit 3d8b04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Test/DatabaseTestTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function loadDependencies()
$config = new Migrations();
$config->enabled = true;

$this->migrations = Services::migrations($config, $this->db);
$this->migrations = Services::migrations($config, $this->db, false);
$this->migrations->setSilent(false);
}

Expand Down

0 comments on commit 3d8b04b

Please sign in to comment.