diff --git a/metadapta_test.go b/metadapta_test.go index d88c586..bc77417 100644 --- a/metadapta_test.go +++ b/metadapta_test.go @@ -71,20 +71,6 @@ func TestConnA(test *testing.T) { } func TestTransOpenCloseA(test *testing.T) { - // currently: - // - // | data sent | data recvd | close sent | close recvd - // 10 | X | X | X | server hangs - // 20 | X | X | X | client hangs - // 30 | X | | X | - // - // when a close message is recvd, it tries to push to the trans and - // hangs on trans.incoming.Send, which hangs on sending the value to the - // underlying channel. why is this? - // - // check if we are really getting values from the channel when pulling - // from the trans channel when we are expecting a close. - clientFunc := func(conn Conn) { // 10 trans, err := conn.OpenTrans()