From 647e0782af8b1237e77642f86d90eb3d414931fa Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 9 Mar 2024 10:42:41 +0100 Subject: net-misc/croc: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger Signed-off-by: Conrad Kostecki --- .../croc/files/croc-disable-network-tests-r1.patch | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 net-misc/croc/files/croc-disable-network-tests-r1.patch (limited to 'net-misc/croc') diff --git a/net-misc/croc/files/croc-disable-network-tests-r1.patch b/net-misc/croc/files/croc-disable-network-tests-r1.patch deleted file mode 100644 index 04540e14b9d4..000000000000 --- a/net-misc/croc/files/croc-disable-network-tests-r1.patch +++ /dev/null @@ -1,32 +0,0 @@ -Disable tests that fail with network-sandbox - ---- a/src/utils/utils_test.go -+++ b/src/utils/utils_test.go -@@ -7,7 +7,6 @@ import ( - "log" - "math/rand" - "os" -- "strings" - "testing" - - "github.com/schollz/croc/v9/src/models" -@@ -189,19 +188,6 @@ func TestHashFile(t *testing.T) { - assert.Equal(t, "e66c561610ad51e2", fmt.Sprintf("%x", hashed)) - } - --func TestPublicIP(t *testing.T) { -- ip, err := PublicIP() -- fmt.Println(ip) -- assert.True(t, strings.Contains(ip, ".") || strings.Contains(ip, ":")) -- assert.Nil(t, err) --} -- --func TestLocalIP(t *testing.T) { -- ip := LocalIP() -- fmt.Println(ip) -- assert.True(t, strings.Contains(ip, ".") || strings.Contains(ip, ":")) --} -- - func TestGetRandomName(t *testing.T) { - name := GetRandomName() - fmt.Println(name) -- cgit v1.2.3-65-gdbad