diff --git a/test/integration/fn_minikube_config.go b/test/integration/fn_config.go similarity index 93% rename from test/integration/fn_minikube_config.go rename to test/integration/fn_config.go index 25ceb45529..e32cb8d003 100644 --- a/test/integration/fn_minikube_config.go +++ b/test/integration/fn_config.go @@ -1,7 +1,7 @@ // +build integration /* -Copyright 2016 The Kubernetes Authors All rights reserved. +Copyright 2019 The Kubernetes Authors All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -22,7 +22,7 @@ import ( "testing" ) -func testMinikubeConfig(t *testing.T) { +func testConfig(t *testing.T) { t.Parallel() p := profileName(t) mk := NewMinikubeRunner(t, p, "--wait=false") diff --git a/test/integration/functional_test.go b/test/integration/functional_test.go index d020b1a10b..85516a51d8 100644 --- a/test/integration/functional_test.go +++ b/test/integration/functional_test.go @@ -49,7 +49,7 @@ func TestFunctional(t *testing.T) { t.Run("Provisioning", testProvisioning) t.Run("Tunnel", testTunnel) t.Run("kubecontext", testKubeConfigCurrentCtx) - t.Run("minikubeConfig", testMinikubeConfig) + t.Run("config", testConfig) if !isTestNoneDriver(t) { t.Run("EnvVars", testClusterEnv)