mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(directory): ♻⚡ try halving db init wait time in migrations test
This commit is contained in:
parent
66158c1e9d
commit
a80618ff44
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ public async Task Migrate_DoesNotThrowException()
|
|||
var exception = await Record.ExceptionAsync(async () =>
|
||||
{
|
||||
// allow time for db to init
|
||||
Thread.Sleep(10000);
|
||||
Thread.Sleep(5000);
|
||||
|
||||
const string connString = "Server=directory-db;Database=filterlists;Uid=filterlists;Pwd=filterlists;";
|
||||
var options = new DbContextOptionsBuilder<QueryDbContext>()
|
||||
|
|
|
|||
Loading…
Reference in a new issue