Browse Source
control order by sending msgs from one goroutine
pull/1095/head
Anton Kaliaev
7 years ago
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with
0 additions and
2 deletions
-
p2p/conn/connection_test.go
|
|
@ -339,8 +339,6 @@ func TestMConnectionTrySend(t *testing.T) { |
|
|
|
go func() { |
|
|
|
mconn.TrySend(0x01, msg) |
|
|
|
resultCh <- "TrySend" |
|
|
|
}() |
|
|
|
go func() { |
|
|
|
mconn.Send(0x01, msg) |
|
|
|
resultCh <- "Send" |
|
|
|
}() |
|
|
|