internal/test: FakeCli: remove name for unused arg (revive)

internal/test/cli.go:184:34: unused-parameter: parameter 'insecure' seems to be unused, consider removing or renaming it as _ (revive)
    func (c *FakeCli) RegistryClient(insecure bool) registryclient.RegistryClient {
                                     ^

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2023-03-30 16:47:41 +02:00
parent 20a70cb530
commit 399ded9b98
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ func (c *FakeCli) ManifestStore() manifeststore.Store {
}
// RegistryClient returns a fake client for testing
func (c *FakeCli) RegistryClient(insecure bool) registryclient.RegistryClient {
func (c *FakeCli) RegistryClient(bool) registryclient.RegistryClient {
return c.registryClient
}