diff options
author | 2017-02-21 22:51:47 -0800 | |
---|---|---|
committer | 2017-02-22 06:51:47 +0000 | |
commit | 81af74aad0d51961a7622fcb410d510ff83f9dd6 (patch) | |
tree | 259f4a656c77c3f01fcf8bf8e67b11eea13f561e /test | |
parent | 59823372267c7eb74fc42b50924d810edf3e5cbe (diff) | |
download | coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.tar.gz coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.tar.zst coredns-81af74aad0d51961a7622fcb410d510ff83f9dd6.zip |
Fix import path `github.com/miekg/coredns` -> `github.com/coredns/coredns` (#547)
This fix fixes import path from
`github.com/miekg/coredns`
->
`github.com/coredns/coredns`
Diffstat (limited to 'test')
-rw-r--r-- | test/auto_test.go | 6 | ||||
-rw-r--r-- | test/cache_test.go | 6 | ||||
-rw-r--r-- | test/ds_file_test.go | 6 | ||||
-rw-r--r-- | test/etcd_cache_debug_test.go | 8 | ||||
-rw-r--r-- | test/etcd_test.go | 10 | ||||
-rw-r--r-- | test/file_reload_test.go | 6 | ||||
-rw-r--r-- | test/kubernetes_test.go | 2 | ||||
-rw-r--r-- | test/metrics_test.go | 8 | ||||
-rw-r--r-- | test/middleware_dnssec_test.go | 2 | ||||
-rw-r--r-- | test/middleware_test.go | 2 | ||||
-rw-r--r-- | test/proxy_health_test.go | 6 | ||||
-rw-r--r-- | test/proxy_test.go | 6 | ||||
-rw-r--r-- | test/reverse_test.go | 6 | ||||
-rw-r--r-- | test/server.go | 4 | ||||
-rw-r--r-- | test/wildcard_test.go | 6 |
15 files changed, 42 insertions, 42 deletions
diff --git a/test/auto_test.go b/test/auto_test.go index 279dedcbc..0efd5df90 100644 --- a/test/auto_test.go +++ b/test/auto_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/cache_test.go b/test/cache_test.go index 1d4517969..f3b752617 100644 --- a/test/cache_test.go +++ b/test/cache_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/ds_file_test.go b/test/ds_file_test.go index fdca58f73..a41bec379 100644 --- a/test/ds_file_test.go +++ b/test/ds_file_test.go @@ -6,9 +6,9 @@ import ( "sort" "testing" - "github.com/miekg/coredns/middleware/proxy" - mtest "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + mtest "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/etcd_cache_debug_test.go b/test/etcd_cache_debug_test.go index 775dd1a58..59fdd8d6b 100644 --- a/test/etcd_cache_debug_test.go +++ b/test/etcd_cache_debug_test.go @@ -7,10 +7,10 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/etcd/msg" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/etcd/msg" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" "golang.org/x/net/context" diff --git a/test/etcd_test.go b/test/etcd_test.go index a6093d4c4..8808f5583 100644 --- a/test/etcd_test.go +++ b/test/etcd_test.go @@ -9,11 +9,11 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/etcd" - "github.com/miekg/coredns/middleware/etcd/msg" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/etcd" + "github.com/coredns/coredns/middleware/etcd/msg" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" etcdc "github.com/coreos/etcd/client" "github.com/miekg/dns" diff --git a/test/file_reload_test.go b/test/file_reload_test.go index cb6a8e940..280818c33 100644 --- a/test/file_reload_test.go +++ b/test/file_reload_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/kubernetes_test.go b/test/kubernetes_test.go index a85dae446..54d346ad5 100644 --- a/test/kubernetes_test.go +++ b/test/kubernetes_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/test" + "github.com/coredns/coredns/middleware/test" "github.com/mholt/caddy" "github.com/miekg/dns" diff --git a/test/metrics_test.go b/test/metrics_test.go index f51e2fb1c..9ed0f2f5a 100644 --- a/test/metrics_test.go +++ b/test/metrics_test.go @@ -8,10 +8,10 @@ import ( "testing" "time" - "github.com/miekg/coredns/middleware/cache" - "github.com/miekg/coredns/middleware/metrics" - mtest "github.com/miekg/coredns/middleware/metrics/test" - "github.com/miekg/coredns/middleware/metrics/vars" + "github.com/coredns/coredns/middleware/cache" + "github.com/coredns/coredns/middleware/metrics" + mtest "github.com/coredns/coredns/middleware/metrics/test" + "github.com/coredns/coredns/middleware/metrics/vars" "github.com/miekg/dns" ) diff --git a/test/middleware_dnssec_test.go b/test/middleware_dnssec_test.go index 52c54f801..8b264014b 100644 --- a/test/middleware_dnssec_test.go +++ b/test/middleware_dnssec_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/miekg/coredns/middleware/test" + "github.com/coredns/coredns/middleware/test" "github.com/miekg/dns" ) diff --git a/test/middleware_test.go b/test/middleware_test.go index a9b803fc5..a631bb274 100644 --- a/test/middleware_test.go +++ b/test/middleware_test.go @@ -5,7 +5,7 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/test" + "github.com/coredns/coredns/middleware/test" "github.com/miekg/dns" ) diff --git a/test/proxy_health_test.go b/test/proxy_health_test.go index 11c42e9a5..19f8bfdc3 100644 --- a/test/proxy_health_test.go +++ b/test/proxy_health_test.go @@ -5,9 +5,9 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/proxy_test.go b/test/proxy_test.go index 3f22a6cb9..c550af044 100644 --- a/test/proxy_test.go +++ b/test/proxy_test.go @@ -5,9 +5,9 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/reverse_test.go b/test/reverse_test.go index f1acb0a65..c120555a9 100644 --- a/test/reverse_test.go +++ b/test/reverse_test.go @@ -5,9 +5,9 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) diff --git a/test/server.go b/test/server.go index b290d5a22..61fe8ea15 100644 --- a/test/server.go +++ b/test/server.go @@ -5,10 +5,10 @@ import ( "log" "sync" - "github.com/miekg/coredns/core/dnsserver" + "github.com/coredns/coredns/core/dnsserver" // Hook in CoreDNS. - _ "github.com/miekg/coredns/core" + _ "github.com/coredns/coredns/core" "github.com/mholt/caddy" ) diff --git a/test/wildcard_test.go b/test/wildcard_test.go index 83e12ea03..06b0ea5d2 100644 --- a/test/wildcard_test.go +++ b/test/wildcard_test.go @@ -5,9 +5,9 @@ import ( "log" "testing" - "github.com/miekg/coredns/middleware/proxy" - "github.com/miekg/coredns/middleware/test" - "github.com/miekg/coredns/request" + "github.com/coredns/coredns/middleware/proxy" + "github.com/coredns/coredns/middleware/test" + "github.com/coredns/coredns/request" "github.com/miekg/dns" ) |