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.
ipcs
Socket
1 parent 437ade8 commit e4cb2cdCopy full SHA for e4cb2cd
ipcs/socket/socket_test.go
@@ -8,6 +8,8 @@ import (
8
"testing"
9
10
"github.com/stretchr/testify/require"
11
+
12
+ "github.com/ava-labs/avalanchego/utils/logging"
13
)
14
15
func TestSocketSendAndReceive(t *testing.T) {
@@ -21,7 +23,7 @@ func TestSocketSendAndReceive(t *testing.T) {
21
23
22
24
25
// Create socket and client; wait for client to connect
- socket := NewSocket(socketName, nil)
26
+ socket := NewSocket(socketName, logging.NoLog{})
27
socket.accept, connCh = newTestAcceptFn(t)
28
require.NoError(socket.Listen())
29
0 commit comments