ipn: use NewPrefs in e2e_test

We weren't setting UsePacketFilter, so the synthetic ping packets
used to establish a connection were never being sent.

Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
pull/152/head
David Crawshaw 4 years ago
parent 61d83f759b
commit 5562fae9f0

@ -166,16 +166,12 @@ func newNode(t *testing.T, prefix string, https *httptest.Server) testNode {
Provider: "google",
LoginName: "test1@tailscale.com",
}
prefs := NewPrefs()
prefs.ControlURL = https.URL
prefs.Persist = &c
n.Start(Options{
FrontendLogID: prefix + "-f",
Prefs: &Prefs{
ControlURL: https.URL,
RouteAll: true,
AllowSingleHosts: true,
CorpDNS: true,
WantRunning: true,
Persist: &c,
},
Prefs: prefs,
Notify: func(n Notify) {
// Automatically visit auth URLs
if n.BrowseToURL != nil {

Loading…
Cancel
Save