diff options
author | 2018-06-01 15:12:49 +0100 | |
---|---|---|
committer | 2018-06-01 15:12:49 +0100 | |
commit | 4f0b36e57e867496ccf89301061284235424eabd (patch) | |
tree | d6830393a24f871254a03c97f9a46efdeb4c43f0 /test/grpc_test.go | |
parent | 0df5eb98fed30e3585681701ee97fe22f7c4b17e (diff) | |
download | coredns-4f0b36e57e867496ccf89301061284235424eabd.tar.gz coredns-4f0b36e57e867496ccf89301061284235424eabd.tar.zst coredns-4f0b36e57e867496ccf89301061284235424eabd.zip |
Extend presubmit to covert test and request (#1846)
Fix the casing *and* fix use of context as we were still referencing
the non-std lib context - no wondering how this could have worked...
Diffstat (limited to 'test/grpc_test.go')
-rw-r--r-- | test/grpc_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/grpc_test.go b/test/grpc_test.go index 50d1643fb..acbd822d7 100644 --- a/test/grpc_test.go +++ b/test/grpc_test.go @@ -1,13 +1,13 @@ package test import ( + "context" "io/ioutil" "log" "testing" "time" "github.com/miekg/dns" - "golang.org/x/net/context" "google.golang.org/grpc" "github.com/coredns/coredns/pb" |