ipn, controlclient: add control.New parameter

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
This commit is contained in:
David Crawshaw
2020-04-29 08:05:24 +10:00
parent f4c7eb8c44
commit d2b7cb1e45
3 changed files with 4 additions and 4 deletions

View File

@ -1031,7 +1031,7 @@ func newServer(t *testing.T) *server {
s.control.ServeHTTP(w, r)
}
}))
s.control, err = control.New(tmpdir, tmpdir, s.http.URL, true)
s.control, err = control.New(tmpdir, tmpdir, tmpdir, s.http.URL, true)
if err != nil {
t.Fatal(err)
}