target/remote: Fix race conditions in tests initialization

This commit is contained in:
fox.cpp 2019-12-29 19:27:56 +03:00
parent bafedd5792
commit 1b661f6eab
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
2 changed files with 45 additions and 14 deletions

View file

@ -62,6 +62,7 @@ func testSTSPolicy(t *testing.T, zones map[string]mockdns.Zone, mtastsGet func(c
}
p.mtastsGet = mtastsGet
p.log = testutils.Logger(t, "remote/mtasts")
p.StartUpdater()
return p
}
@ -79,6 +80,7 @@ func testSTSPreload(t *testing.T, download FuncPreloadList) *stsPreloadPolicy {
t.Fatal(err)
}
p.log = testutils.Logger(t, "remote/preload")
p.StartUpdater()
return p
}