diff options
author | 2018-05-16 14:35:31 -0700 | |
---|---|---|
committer | 2018-05-16 22:35:31 +0100 | |
commit | 9a82fa0374286417ab352e9422a70228577a99cf (patch) | |
tree | 747ef588fb3f493ba20b9eeeec22fddcb0baaa11 /plugin/tls | |
parent | 05a030e17b43ac5d19a427c30d203d93f61c9f03 (diff) | |
download | coredns-9a82fa0374286417ab352e9422a70228577a99cf.tar.gz coredns-9a82fa0374286417ab352e9422a70228577a99cf.tar.zst coredns-9a82fa0374286417ab352e9422a70228577a99cf.zip |
golinter fix (#1807)
This fix fixes golinter warning:
```
plugin/tls/tls_test.go:1::warning: file is not goimported (goimports)
```
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'plugin/tls')
-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 84a74ae3b..0bbba18a1 100644 --- a/plugin/tls/tls_test.go +++ b/plugin/tls/tls_test.go @@ -14,8 +14,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 { |