diff options
Diffstat (limited to 'src/k8splugin/api/handler_test.go')
-rw-r--r-- | src/k8splugin/api/handler_test.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/k8splugin/api/handler_test.go b/src/k8splugin/api/handler_test.go index df573d94..8d990daa 100644 --- a/src/k8splugin/api/handler_test.go +++ b/src/k8splugin/api/handler_test.go @@ -1,3 +1,5 @@ +// +build unit + /* Copyright 2018 Intel Corporation. Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,12 +18,13 @@ package api import ( "bytes" "encoding/json" - "k8s.io/client-go/kubernetes" "net/http" "net/http/httptest" "reflect" "testing" + "k8s.io/client-go/kubernetes" + "k8splugin/csar" "k8splugin/db" ) |