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 38d26c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ chenkaiC4 <[email protected]>
Hugo Arregui <[email protected]>
Hugo Arregui <[email protected]>
Jerko Steiner <[email protected]>
Jerry Tao <[email protected]>
John Bradley <[email protected]>
Konstantin Itskov <[email protected]>
Lukas Herman <[email protected]>
Expand Down
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 38d26c7

Please sign in to comment.