From 724132e51cc9c04517f532aa60f1d66e09c692e6 Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Wed, 6 Nov 2024 10:17:11 +0100 Subject: [PATCH] test: correct description for secure cookie test --- pkg/config/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index 28c9bb0..e58ac15 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -97,7 +97,7 @@ func TestConfig_Validate(t *testing.T) { }, }, { - "secure cookies cannot be disabled for non-secure ingress", + "secure cookies cannot be disabled for secure ingress", func(cfg *config.Config) { cfg.Cookie.Secure = false cfg.Ingresses = []string{"https://localhost:3000"}