We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c148936 commit 745ff04Copy full SHA for 745ff04
credentials/credentials_test.go
@@ -135,10 +135,12 @@ func TestTLSServerHandshakeReturnsAuthInfo(t *testing.T) {
135
serverRawConn, sErr := lis.Accept()
136
if sErr != nil {
137
t.Errorf("Server failed to accept connection: %v", sErr)
138
+ return
139
}
140
_, serverAuthInfo, sErr = serverTLS.ServerHandshake(serverRawConn)
141
142
t.Errorf("Error on server while handshake. Error: %v", sErr)
143
144
145
}()
146
conn, err := net.Dial("tcp", lis.Addr().String())
0 commit comments