Skip to content

Commit

Permalink
Use the _ identifier for conformance checks
Browse files Browse the repository at this point in the history
... instead of something else + shutting up lint.

Signed-off-by: Miloslav Trmač <[email protected]>
  • Loading branch information
mtrmac committed Jun 19, 2021
1 parent 51e3560 commit 4dbce95
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions storage/storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 4dbce95

Please sign in to comment.