GODT-2221: Set DOH off by default.

This commit is contained in:
Romain Le Jeune
2023-01-04 12:08:06 +00:00
parent b10e8abde0
commit 3743e45566
5 changed files with 12 additions and 12 deletions

View File

@ -90,8 +90,8 @@ func (t *testCtx) initBridge() (<-chan events.Event, error) {
return nil, fmt.Errorf("bridge is already started")
}
// Bridge will enable the proxy by default at startup.
t.mocks.ProxyCtl.EXPECT().AllowProxy()
// Bridge will disable the proxy by default at startup.
t.mocks.ProxyCtl.EXPECT().DisallowProxy()
// Get the path to the vault.
vaultDir, err := t.locator.ProvideSettingsPath()