aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Nguyen Quang Huy <huynq0911@gmail.com> 2019-02-17 15:31:32 +0700
committerGravatar Miek Gieben <miek@miek.nl> 2019-02-17 08:31:32 +0000
commit35982bd27da911c6daaeeb452156b706afa48ae7 (patch)
tree0e1d3cf741c2b003b654ab46e68e5c530f2bae48 /test
parent8d09cb243f09704c39609499c4d07f27e3e2e39c (diff)
downloadcoredns-35982bd27da911c6daaeeb452156b706afa48ae7.tar.gz
coredns-35982bd27da911c6daaeeb452156b706afa48ae7.tar.zst
coredns-35982bd27da911c6daaeeb452156b706afa48ae7.zip
Fix unsorted imports (#2561)
Imports should be sorted by Go coding convention
Diffstat (limited to 'test')
-rw-r--r--test/file_reload_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/file_reload_test.go b/test/file_reload_test.go
index 251c8c25c..91372ecc3 100644
--- a/test/file_reload_test.go
+++ b/test/file_reload_test.go
@@ -5,8 +5,8 @@ import (
"testing"
"time"
- "github.com/coredns/coredns/plugin/test"
"github.com/coredns/coredns/plugin/file"
+ "github.com/coredns/coredns/plugin/test"
"github.com/miekg/dns"
)