1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00

Fix socks test

This commit is contained in:
V2Ray 2015-10-05 17:03:26 +02:00
parent 0677013455
commit 0be00a1c52

View File

@ -165,7 +165,7 @@ func TestSocksUdpSend(t *testing.T) {
nBytes, err := conn.Read(response)
assert.Error(err).IsNil()
assert.Bytes(response[:nBytes]).Equals(och.Data2Return)
assert.Bytes(response[10:nBytes]).Equals(och.Data2Return)
assert.Bytes(data2Send).Equals(och.Data2Send.Bytes())
assert.String(och.Destination.String()).Equals("udp:8.8.4.4:53")
}