mirror of https://github.com/kubernetes/kops.git
Fix gofmt
This commit is contained in:
parent
362e2cb33e
commit
72ec584033
|
|
@ -17,16 +17,16 @@ limitations under the License.
|
|||
package cloudup
|
||||
|
||||
import (
|
||||
"testing"
|
||||
api "k8s.io/kops/pkg/apis/kops"
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_FindCNIAssetFromEnvironmentVariable(t *testing.T) {
|
||||
|
||||
desiredCNIVersion := "https://storage.googleapis.com/kubernetes-release/network-plugins/cni-TEST-VERSION.tar.gz"
|
||||
os.Setenv(ENV_VAR_CNI_VERSION_URL, desiredCNIVersion)
|
||||
defer func(){
|
||||
defer func() {
|
||||
os.Unsetenv(ENV_VAR_CNI_VERSION_URL)
|
||||
}()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue