fix: remove extra AppVersion context key entry

This commit is contained in:
juancwu 2026-02-23 17:51:13 +00:00
commit 7e3a2db356
6 changed files with 2 additions and 21 deletions

View file

@ -32,7 +32,6 @@ func guestContext() context.Context {
ctx := context.Background()
ctx = ctxkeys.WithConfig(ctx, testutil.TestConfig().Sanitized())
ctx = ctxkeys.WithCSRFToken(ctx, "test")
ctx = ctxkeys.WithAppVersion(ctx, "test")
return ctx
}