From 8c572202dd208df11ec37d450a9e3c558b79fb4a Mon Sep 17 00:00:00 2001 From: John Landa Date: Fri, 2 Feb 2024 13:51:48 -0700 Subject: [PATCH] make gen --- jwt/jwt_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jwt/jwt_test.go b/jwt/jwt_test.go index 3739639..09f6d1d 100644 --- a/jwt/jwt_test.go +++ b/jwt/jwt_test.go @@ -18,8 +18,10 @@ import ( "github.com/hashicorp/cap/oidc" ) -var priv *rsa.PrivateKey -var priv2 *rsa.PrivateKey +var ( + priv *rsa.PrivateKey + priv2 *rsa.PrivateKey +) func init() { // Generate a key to sign JWTs with throughout most test cases.