diff options
| author | mo khan <mo@mokhan.ca> | 2025-08-06 09:03:47 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-08-06 09:03:47 -0600 |
| commit | 3f228b16c758d377566f11d2d328d1ccf658a2ad (patch) | |
| tree | 46b8c27db3a7bdac983ec00c2d69ce0d7b738489 | |
| parent | 0ad517acfac33b369db8d65feaa8d014da96e1f5 (diff) | |
test: timeout container after 5 seconds in test
| -rw-r--r-- | test/integration/container_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/container_test.go b/test/integration/container_test.go index ecfd2b1..a3e7974 100644 --- a/test/integration/container_test.go +++ b/test/integration/container_test.go @@ -31,7 +31,7 @@ func environmentVariables(srv *web.OIDCServer) map[string]string { } func TestContainer(t *testing.T) { - ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() srv := web.NewOIDCServer(t) |
