1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Disable tests needing network access
Author: Nilesh Patra <nilesh@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1016357
Forwarded: not-needed
Last-Update: 2022-08-01
--- a/client_test.go
+++ b/client_test.go
@@ -28,6 +28,7 @@
}
func createListeningTestClientWithSTUNServ(t *testing.T, loggerFactory logging.LoggerFactory) (*Client, net.PacketConn, bool) {
+ t.Skip()
conn, err := net.ListenPacket("udp4", "0.0.0.0:0")
assert.NoError(t, err)
@@ -44,6 +45,7 @@
}
func TestClientWithSTUN(t *testing.T) {
+ t.Skip()
loggerFactory := logging.NewDefaultLoggerFactory()
log := loggerFactory.NewLogger("test")
|