aboutsummaryrefslogtreecommitdiff
path: root/plugin/dnstap/context_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/dnstap/context_test.go')
-rw-r--r--plugin/dnstap/context_test.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugin/dnstap/context_test.go b/plugin/dnstap/context_test.go
deleted file mode 100644
index 64418f59b..000000000
--- a/plugin/dnstap/context_test.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package dnstap
-
-import (
- "context"
- "testing"
-)
-
-func TestDnstapContext(t *testing.T) {
- ctx := ContextWithTapper(context.TODO(), Dnstap{})
- tapper := TapperFromContext(ctx)
-
- if tapper == nil {
- t.Fatal("Can't get tapper")
- }
-}