diff options
author | 2018-06-21 12:34:02 +0100 | |
---|---|---|
committer | 2018-06-21 04:34:02 -0700 | |
commit | ad8021230c775f129556fe7f681f0b09a59d480e (patch) | |
tree | b1fc6b90003796e9c3ba186eaa781d35e1581f4f /plugin | |
parent | 422aec5f5fc9d1f4d4017357f86098ec34eb1676 (diff) | |
download | coredns-ad8021230c775f129556fe7f681f0b09a59d480e.tar.gz coredns-ad8021230c775f129556fe7f681f0b09a59d480e.tar.zst coredns-ad8021230c775f129556fe7f681f0b09a59d480e.zip |
Makefile fixes: (#1892)
Correctly set the path for the presubmits, fix some typos and make
the goimport target do the linting to the lint target can be removed.
Also don't make it a fatal error because gofmt changes between releases.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/kubernetes/handler_ignore_emptyservice_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/kubernetes/handler_ignore_emptyservice_test.go b/plugin/kubernetes/handler_ignore_emptyservice_test.go index 149f8423f..f87dc1d7a 100644 --- a/plugin/kubernetes/handler_ignore_emptyservice_test.go +++ b/plugin/kubernetes/handler_ignore_emptyservice_test.go @@ -2,9 +2,10 @@ package kubernetes import ( "context" + "testing" + "github.com/coredns/coredns/plugin/pkg/dnstest" "github.com/coredns/coredns/plugin/test" - "testing" "github.com/miekg/dns" ) |