From 35982bd27da911c6daaeeb452156b706afa48ae7 Mon Sep 17 00:00:00 2001 From: Nguyen Quang Huy Date: Sun, 17 Feb 2019 15:31:32 +0700 Subject: [PATCH] Fix unsorted imports (#2561) Imports should be sorted by Go coding convention --- test/file_reload_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" )