From 8037df11c701b88493c5481a14c6b7871a667e18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Sat, 19 Jun 2021 22:06:31 +0200 Subject: [PATCH] Use the _ identifier for conformance checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... instead of something else + shutting up lint. Signed-off-by: Miloslav Trmač --- storage/storage_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/storage/storage_test.go b/storage/storage_test.go index ceebf28044..780e007c2d 100644 --- a/storage/storage_test.go +++ b/storage/storage_test.go @@ -35,11 +35,11 @@ import ( ) var ( - topwd = "" - _imgd types.ImageDestination = &storageImageDestination{} //nolint - _imgs types.ImageSource = &storageImageSource{} //nolint - _ref types.ImageReference = &storageReference{} //nolint - _transport types.ImageTransport = &storageTransport{} //nolint + topwd = "" + _ types.ImageDestination = &storageImageDestination{} + _ types.ImageSource = &storageImageSource{} + _ types.ImageReference = &storageReference{} + _ types.ImageTransport = &storageTransport{} ) const (