tunnel: remove unused test loop (#1878)

Co-authored-by: Asim Aslam <asim@aslam.me>
This commit is contained in:
Lars Lehtonen
2020-07-29 04:51:09 -07:00
committed by GitHub
parent d66803a136
commit 3d1ba914fc

View File

@@ -113,7 +113,6 @@ func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
} }
// get a message // get a message
for {
// accept the message // accept the message
m := new(transport.Message) m := new(transport.Message)
if err := c.Recv(m); err != nil { if err := c.Recv(m); err != nil {
@@ -134,7 +133,6 @@ func testAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {
return return
} }
}
// testSend will create a new link to an address and then a tunnel on top // testSend will create a new link to an address and then a tunnel on top
func testSend(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) { func testSend(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) {