From 913d2540e96cf7b972559385fb859288a436232d Mon Sep 17 00:00:00 2001 From: Nathan Oyler Date: Sat, 23 Dec 2017 15:28:42 -0700 Subject: [PATCH] Correct Test Option to use correct name. Replace duplicate IsTestNetwork with proper IsTestVolume --- test/e2e/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/main.go b/test/e2e/main.go index 7315a254f2..7024e82b44 100644 --- a/test/e2e/main.go +++ b/test/e2e/main.go @@ -20,7 +20,7 @@ func init() { pflag.StringVar(&options.ConfigFile, "configFile", "test/e2e/e2e_config.yaml", "Path to configuration file") pflag.BoolVar(&options.IsTestCreate, "create", false, "Create a new cluster") pflag.BoolVar(&options.IsTestNetwork, "network", false, "Run network tests") - pflag.BoolVar(&options.IsTestNetwork, "volume", false, "Run volume tests") + pflag.BoolVar(&options.IsTestVolume, "volume", false, "Run volume tests") pflag.BoolVar(&options.IsTestDelete, "delete", false, "Delete the cluster") pflag.BoolVar(&options.IsTestAll, "all", false, "The whole show. Test everything") pflag.BoolVar(&options.IsTestAPI, "api", false, "Test API")