From 9a82fa0374286417ab352e9422a70228577a99cf Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 16 May 2018 14:35:31 -0700 Subject: [PATCH] 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 --- plugin/tls/tls_test.go | 4 ++-- 1 file 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 {