From ef8cbcfaf4adf3e7037cc18b0fdd14540e560145 Mon Sep 17 00:00:00 2001 From: "maksim.nabokikh" Date: Thu, 26 Feb 2026 16:10:00 +0100 Subject: [PATCH] feat: add integration tests for authproxy connector with nginx configuration Signed-off-by: maksim.nabokikh --- connector/authproxy/authproxy_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/authproxy/authproxy_integration_test.go b/connector/authproxy/authproxy_integration_test.go index 479aae31..1675ac82 100644 --- a/connector/authproxy/authproxy_integration_test.go +++ b/connector/authproxy/authproxy_integration_test.go @@ -35,7 +35,7 @@ func startTestBackend(t *testing.T, conn *callback) (cleanup func()) { mux := http.NewServeMux() mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - ident, err := conn.HandleCallback(connector.Scopes{Groups: true}, r) + ident, err := conn.HandleCallback(connector.Scopes{Groups: true}, nil, r) result := identityResult{Identity: ident} if err != nil { result.Error = err.Error()