GODT-1657: More stable sync, with some tests

This commit is contained in:
James Houlahan
2022-10-09 23:05:52 +02:00
parent e7526f2e78
commit 509a767e50
41 changed files with 883 additions and 779 deletions

View File

@ -38,12 +38,12 @@ func (s *scenario) itFailsWithError(wantErr string) error {
}
func (s *scenario) internetIsTurnedOff() error {
s.t.dialer.SetCanDial(false)
s.t.netCtl.SetCanDial(false)
return nil
}
func (s *scenario) internetIsTurnedOn() error {
s.t.dialer.SetCanDial(true)
s.t.netCtl.SetCanDial(true)
return nil
}