Add comment for relay test

This commit is contained in:
9seconds
2021-03-24 10:18:25 +03:00
parent 336e825e3a
commit 4da2a4f10f
+3 -1
View File
@@ -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) {