aboutsummaryrefslogtreecommitdiff
path: root/plugin/tls
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com> 2018-05-16 14:35:31 -0700
committerGravatar Miek Gieben <miek@miek.nl> 2018-05-16 22:35:31 +0100
commit9a82fa0374286417ab352e9422a70228577a99cf (patch)
tree747ef588fb3f493ba20b9eeeec22fddcb0baaa11 /plugin/tls
parent05a030e17b43ac5d19a427c30d203d93f61c9f03 (diff)
downloadcoredns-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.go4
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 {