Skip to content

Commit

Permalink
Fix last failing test?
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff R. Allen committed Aug 20, 2020
1 parent 9502752 commit b29523d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/tcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func NewTCPConn(addr Address, suite Suite) (conn *TCPConn, err error) {
func (c *TCPConn) Receive() (env *Envelope, e error) {
buff, err := c.receiveRaw()
if err != nil {
return nil, xerrors.Errorf("receiving: %v", err)
return nil, xerrors.Errorf("receiving: %w", err)
}

id, body, err := Unmarshal(buff, c.suite)
Expand Down

0 comments on commit b29523d

Please sign in to comment.