Commit 4a441ff2 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 28e1f910
...@@ -232,6 +232,9 @@ func TestHandshake(t *testing.T) { ...@@ -232,6 +232,9 @@ func TestHandshake(t *testing.T) {
withZEOSrv(t, func(t *testing.T, zsrv ZEOSrv) { withZEOSrv(t, func(t *testing.T, zsrv ZEOSrv) {
ctx := context.Background() ctx := context.Background()
net := xnet.NetPlain("unix") net := xnet.NetPlain("unix")
defer func() {
err := net.Close(); X(err)
}()
zlink, err := dialZLink(ctx, net, zsrv.Addr()); X(err) zlink, err := dialZLink(ctx, net, zsrv.Addr()); X(err)
defer func() { defer func() {
err := zlink.Close(); X(err) err := zlink.Close(); X(err)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment