diff --git a/test/e2e/features/story_microshift.feature b/test/e2e/features/story_microshift.feature index 1270706122..35b511f046 100644 --- a/test/e2e/features/story_microshift.feature +++ b/test/e2e/features/story_microshift.feature @@ -3,7 +3,6 @@ Feature: Microshift test stories Background: Given setting config property "preset" to value "microshift" succeeds - And setting config property "network-mode" to value "user" succeeds And executing single crc setup command succeeds And starting CRC with default bundle succeeds And ensuring oc command is available @@ -34,4 +33,4 @@ Feature: Microshift test stories And with up to "4" retries with wait period of "1m" http response from "http://httpd-example-testproj.apps.crc.testing" has status code "200" Then executing "curl -s http://httpd-example-testproj.apps.crc.testing" succeeds And stdout should contain "Hello CRC!" - Then with up to "4" retries with wait period of "1m" http response from "http://httpd-example-testproj.apps.crc.testing" has status code "200" \ No newline at end of file + Then with up to "4" retries with wait period of "1m" http response from "http://httpd-example-testproj.apps.crc.testing" has status code "200" diff --git a/test/e2e/testsuite/testsuite.go b/test/e2e/testsuite/testsuite.go index b7dbe40c02..9cd314c454 100644 --- a/test/e2e/testsuite/testsuite.go +++ b/test/e2e/testsuite/testsuite.go @@ -865,10 +865,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)