summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-15 12:37:37 -0600
committermo khan <mo@mokhan.ca>2025-05-15 12:37:37 -0600
commit152ca573505fd89151d3cdf117c3f1bb3b05b9d9 (patch)
tree8becf29c1c26fdcc2f5c21e6110a1f2db521e0a7 /test
parentca3fb0f032ab338a10379807d97e0d31c3afca35 (diff)
refactor: remove unused environment variables
Diffstat (limited to 'test')
-rw-r--r--test/integration/container_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/integration/container_test.go b/test/integration/container_test.go
index b956250..4768c98 100644
--- a/test/integration/container_test.go
+++ b/test/integration/container_test.go
@@ -20,12 +20,10 @@ import (
func environmentVariables(srv *oidc.TestServer) map[string]string {
return map[string]string{
"APP_ENV": "test",
- "BIND_ADDR": ":8080",
"DEBUG": env.Fetch("DEBUG", ""),
"HMAC_SESSION_SECRET": "secret",
"OAUTH_CLIENT_ID": srv.MockOIDC.ClientID,
"OAUTH_CLIENT_SECRET": srv.MockOIDC.ClientSecret,
- "OAUTH_REDIRECT_URL": "",
"OIDC_ISSUER": srv.Issuer(),
}
}