diff --git a/mtglib/internal/relay/relay_test.go b/mtglib/internal/relay/relay_test.go index b771b76..54b257d 100644 --- a/mtglib/internal/relay/relay_test.go +++ b/mtglib/internal/relay/relay_test.go @@ -47,7 +47,9 @@ func (suite *RelayTestSuite) TestCopyFine() { westConn := &rwcMock{} westConn.Write([]byte{100, 101, 102}) // nolint: errcheck - suite.r.Process(eastConn, westConn) + // yes, this test is not good enough. but apparently, if it hangs, + // we can debug most of possible issues. + _ = suite.r.Process(eastConn, westConn) } func TestRelay(t *testing.T) {