From 294ab5fc60b2a9550b78a452fd40d489f90485d6 Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 13 May 2025 14:15:31 -0600 Subject: test: try binding to an ipv4 loopback address/port --- test/integration/oidc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/integration') diff --git a/test/integration/oidc.go b/test/integration/oidc.go index eeaf8ea..35653ef 100644 --- a/test/integration/oidc.go +++ b/test/integration/oidc.go @@ -20,7 +20,7 @@ func NewOIDCTestServer(t *testing.T) *mockoidc.MockOIDC { }) }) - ln, err := net.Listen("tcp", "127.0.0.1:0") + ln, err := net.Listen("tcp4", "0.0.0.0:0") require.NoError(t, err) require.NoError(t, srv.Start(ln, nil)) return srv -- cgit v1.2.3