Bläddra i källkod

go.crypto/ssh: only close connection if it was open in TestClientUnsupportedKex.

R=dave
CC=golang-dev
https://golang.org/cl/15450046
Han-Wen Nienhuys 12 år sedan
förälder
incheckning
105632d35b
1 ändrade filer med 2 tillägg och 0 borttagningar
  1. 2 0
      ssh/client_auth_test.go

+ 2 - 0
ssh/client_auth_test.go

@@ -361,6 +361,8 @@ func TestClientUnsupportedKex(t *testing.T) {
 	c, err := Dial("tcp", newMockAuthServer(t), config)
 	if err == nil || !strings.Contains(err.Error(), "no common algorithms") {
 		t.Errorf("got %v, expected 'no common algorithms'", err)
+	}
+	if c != nil {
 		c.Close()
 	}
 }