aboutsummaryrefslogtreecommitdiff
path: root/plugin/dnstap/handler_test.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-04-22 08:34:35 +0100
committerGravatar GitHub <noreply@github.com> 2018-04-22 08:34:35 +0100
commit0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4 (patch)
tree80ead193f34227b1fc8f010f83a727edd89bf9f3 /plugin/dnstap/handler_test.go
parent69a956f052a603eca3d400abf8a44a9b44f83184 (diff)
downloadcoredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.gz
coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.tar.zst
coredns-0930eb8beb69684dfb1e1e066e2a7a6ed3827bf4.zip
all: fix plugin import ordering (#1717)
Got a bit messed up with stb lib "context" usage.
Diffstat (limited to 'plugin/dnstap/handler_test.go')
-rw-r--r--plugin/dnstap/handler_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugin/dnstap/handler_test.go b/plugin/dnstap/handler_test.go
index 231aca500..003a385c8 100644
--- a/plugin/dnstap/handler_test.go
+++ b/plugin/dnstap/handler_test.go
@@ -1,6 +1,7 @@
package dnstap
import (
+ "context"
"errors"
"net"
"strings"
@@ -9,9 +10,6 @@ import (
"github.com/coredns/coredns/plugin"
"github.com/coredns/coredns/plugin/dnstap/test"
mwtest "github.com/coredns/coredns/plugin/test"
-
- "context"
-
tap "github.com/dnstap/golang-dnstap"
"github.com/miekg/dns"
)