Skip to content

Commit

Permalink
Fix race in TestStreamClose introduced by #238
Browse files Browse the repository at this point in the history
Fixes #242
  • Loading branch information
enobufs committed Oct 18, 2022
1 parent d13d723 commit eb183f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vnet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,8 @@ func TestStreamClose(t *testing.T) {
log.Infof("server: received %d bytes (%d)", n, numServerReceived)
assert.Equal(t, 0, bytes.Compare(buf[:n], messages[numServerReceived]), "should receive HELLO")

_, err = stream.Write(buf[:n])
assert.NoError(t, err, "should succeed")
_, err2 := stream.Write(buf[:n])
assert.NoError(t, err2, "should succeed")

numServerReceived++
}
Expand Down

0 comments on commit eb183f3

Please sign in to comment.