From 31ef27e6faaa82a12d2d841d18f1df6732a3ecf0 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Tue, 31 Jan 2023 10:23:53 +0100 Subject: Discovery Test: Fix http -> https typo We rewrite URLs anyway so this is still fine but let's not make it so confusing --- internal/discovery/discovery_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/discovery/discovery_test.go b/internal/discovery/discovery_test.go index 31615d8..0a1ec4d 100644 --- a/internal/discovery/discovery_test.go +++ b/internal/discovery/discovery_test.go @@ -30,7 +30,7 @@ func setupFileServer(t *testing.T, directory string) *httptest.Server { // Override the global disco URL with the local file server port := listener.Addr().(*net.TCPAddr).Port - DiscoURL = fmt.Sprintf("http://127.0.0.1:%d/", port) + DiscoURL = fmt.Sprintf("https://127.0.0.1:%d/", port) return s } -- cgit v1.2.3