summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Turner <jt@jtnet.co.uk>2017-12-07 20:53:49 +0000
committerJonathan Turner <jt@jtnet.co.uk>2017-12-07 20:53:49 +0000
commitcffe027292dbbf922b862188d01af5a5a5341074 (patch)
tree86f790149686f659afd1f1297e1335c6107b83bf
parentf79927e3e776c5d3e783c3deaae2d5a72b1d4828 (diff)
missing testing import
-rw-r--r--srv_integration_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/srv_integration_test.go b/srv_integration_test.go
index 29c573b..eb25220 100644
--- a/srv_integration_test.go
+++ b/srv_integration_test.go
@@ -3,7 +3,10 @@
package dnsutils
-import "github.com/stretchr/testify/assert"
+import (
+ "github.com/stretchr/testify/assert"
+ "testing"
+)
func TestResolveKDC(t *testing.T) {
count, res, err := OrderedSRV("kerberos", "tcp", "test.gokrb5")