{ipn,control/controlclient}/tests: pass a logf function to control.New().

This matches the new API requirements.

Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
This commit is contained in:
Avery Pennarun
2020-05-13 22:43:47 -04:00
parent 9ccbcda612
commit a7edf11a40
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ func TestIPN(t *testing.T) {
if err != nil {
t.Fatalf("create tempdir: %v\n", err)
}
ctl, err = control.New(tmpdir, tmpdir, tmpdir, serverURL, true)
ctl, err = control.New(tmpdir, tmpdir, tmpdir, serverURL, true, t.Logf)
if err != nil {
t.Fatalf("create control server: %v\n", ctl)
}