From 1b43b9268741aaa8aa0ed93d95efcdde0eb8b3f5 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Mon, 27 Oct 2025 22:51:52 -0400 Subject: [PATCH] Remove outdated comment --- metadapta_test.go | 14 -------------- 1 file changed, 14 deletions(-) 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()