remove weird concurrency testing

This commit is contained in:
Anton Kaliaev 2018-01-11 15:32:25 -06:00
parent 4e2000abfe
commit 860da464df
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 0 additions and 4 deletions

View File

@ -339,12 +339,8 @@ func TestMConnectionTrySend(t *testing.T) {
go func() {
mconn.TrySend(0x01, msg)
resultCh <- "TrySend"
mconn.Send(0x01, msg)
resultCh <- "Send"
}()
assert.False(mconn.CanSend(0x01))
assert.False(mconn.TrySend(0x01, msg))
assert.Equal("TrySend", <-resultCh)
server.Read(make([]byte, len(msg)))
assert.Equal("Send", <-resultCh) // Order constrained by parallel blocking above
}