diff options
author | 2018-02-18 09:43:56 +0100 | |
---|---|---|
committer | 2018-02-18 09:43:56 +0100 | |
commit | 05e41c59698cadb6c43452504e4a999570ab93b0 (patch) | |
tree | 268fba133fb552c14b6c7828008f28c6e7369305 /plugin/tls/tls_test.go | |
parent | 8cce06cba10c42ce501a57bd3b7d06ca6064d774 (diff) | |
download | coredns-05e41c59698cadb6c43452504e4a999570ab93b0.tar.gz coredns-05e41c59698cadb6c43452504e4a999570ab93b0.tar.zst coredns-05e41c59698cadb6c43452504e4a999570ab93b0.zip |
go 1.10: update travis and gofmt (#1541)
* go 1.10: update travis and gofmt
fmt now complains about on file tls_test.go, fix that. Also remove
gofmt, as goimports also checks, so this was done twice.
Put go 1.9 and 1.10 in travis for the time being.
* goimports optional
Diffstat (limited to 'plugin/tls/tls_test.go')
-rw-r--r-- | plugin/tls/tls_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/tls/tls_test.go b/plugin/tls/tls_test.go index 2374d772c..152abedfe 100644 --- a/plugin/tls/tls_test.go +++ b/plugin/tls/tls_test.go @@ -18,8 +18,8 @@ func TestTLS(t *testing.T) { expectedRoot string // expected root, set to the controller. Empty for negative cases. expectedErrContent string // substring from the expected error. Empty for positive cases. }{ - // positive - // negative + // positive + // negative } for i, test := range tests { |