diff options
author | 2017-02-21 22:51:47 -0800 | |
---|---|---|
committer | 2017-02-22 06:51:47 +0000 | |
commit | 81af74aad0d51961a7622fcb410d510ff83f9dd6 (patch) | |
tree | 259f4a656c77c3f01fcf8bf8e67b11eea13f561e /test/etcd_test.go | |
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/etcd_test.go')
-rw-r--r-- | test/etcd_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
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" |