aboutsummaryrefslogtreecommitdiff
path: root/test/metrics_test.go
diff options
context:
space:
mode:
authorGravatar Yong Tang <yongtang@users.noreply.github.com> 2017-02-21 22:51:47 -0800
committerGravatar Miek Gieben <miek@miek.nl> 2017-02-22 06:51:47 +0000
commit81af74aad0d51961a7622fcb410d510ff83f9dd6 (patch)
tree259f4a656c77c3f01fcf8bf8e67b11eea13f561e /test/metrics_test.go
parent59823372267c7eb74fc42b50924d810edf3e5cbe (diff)
downloadcoredns-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/metrics_test.go')
-rw-r--r--test/metrics_test.go8
1 files changed, 4 insertions, 4 deletions
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"
)