From 3b7c6e347b1a1c13dc70cbcd5aaacf610f1128d6 Mon Sep 17 00:00:00 2001 From: jwierzbo Date: Fri, 18 Feb 2022 11:04:52 +0100 Subject: [PATCH] Fix k8s mode --- test/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/client_test.go b/test/client_test.go index 4b0d8873..d4de0996 100644 --- a/test/client_test.go +++ b/test/client_test.go @@ -61,7 +61,7 @@ func skipOnK8S(t *testing.T) { } func isK8S() bool { - return os.Getenv("TEST_MODE") == "k8s" + return os.Getenv("TEST_MODE_K8S") == "k8s" } // skipBetweenVersion skips the test if the current server version is less than