diff --git a/integration/general_test.go b/integration/general_test.go index e18f8bf3255..6de3dd90be0 100644 --- a/integration/general_test.go +++ b/integration/general_test.go @@ -22,7 +22,7 @@ func TestPingAllByIP(t *testing.T) { scenario, err := NewScenario() assertNoErr(t, err) - // defer scenario.Shutdown() + defer scenario.Shutdown() spec := map[string]int{ "user1": len(MustTestVersions), diff --git a/integration/scenario.go b/integration/scenario.go index b2ef5aef01d..183eb2706c1 100644 --- a/integration/scenario.go +++ b/integration/scenario.go @@ -397,7 +397,7 @@ func (s *Scenario) WaitForTailscaleSync() error { for _, user := range s.users { for _, client := range user.Clients { peers, _ := client.PrettyPeers() - log.Printf(peers) + log.Println(peers) } }