fix check node1Err !=nil but return a nil value error err

Signed-off-by: alingse <alingse@foxmail.com>
This commit is contained in:
alingse
2024-12-19 14:57:28 +00:00
parent 2d629174e7
commit a79fd08294
2 changed files with 4 additions and 4 deletions

View File

@@ -85,12 +85,12 @@ func establishTestConnection(t testing.TB) (net.Conn, net.Conn, error) {
remote := <-remoteConnChan
if remote.err != nil {
return nil, nil, err
return nil, nil, remote.err
}
local := <-localConnChan
if local.err != nil {
return nil, nil, err
return nil, nil, local.err
}
t.Cleanup(func() {