From a76bc6eb0d825cd1e88c8ae32047200af9542823 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau <cfergeau@redhat.com> Date: Fri, 25 Aug 2023 12:16:36 +0200 Subject: [PATCH] Revert "e2e test: Ignore network-mode config property for non linux platform" This reverts commit 557ec94acb65317acda3d89a4d07ef1248c33581. We no longer set network-mode as part of the tests, so this code is not needed. --- test/e2e/testsuite/testsuite.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/e2e/testsuite/testsuite.go b/test/e2e/testsuite/testsuite.go index 8808bf9dc3..049c6ca6f6 100644 --- a/test/e2e/testsuite/testsuite.go +++ b/test/e2e/testsuite/testsuite.go @@ -860,10 +860,6 @@ func setOcEnv() error { } func SetConfigPropertyToValueSucceedsOrFails(property string, value string, expected string) error { - // Since network-mode is only supported on Linux, we skip this property test for non-linux platforms - if property == "network-mode" && runtime.GOOS != "linux" { - return nil - } if value == "current bundle" { if !userProvidedBundle { value = filepath.Join(util.CRCHome, "cache", bundleName)