diff --git a/cli/command/registry.go b/cli/command/registry.go index 94b0c4171a..9958b7c0f8 100644 --- a/cli/command/registry.go +++ b/cli/command/registry.go @@ -21,8 +21,9 @@ import ( "github.com/pkg/errors" ) -// ElectAuthServer returns the default registry to use -// Deprecated: use registry.IndexServer instead +// ElectAuthServer returns the default registry to use. +// +// Deprecated: use [registry.IndexServer] instead. func ElectAuthServer(_ context.Context, _ Cli) string { return registry.IndexServer } diff --git a/cli/command/registry_test.go b/cli/command/registry_test.go index b7d3e82116..be518e3175 100644 --- a/cli/command/registry_test.go +++ b/cli/command/registry_test.go @@ -6,16 +6,13 @@ import ( "fmt" "testing" - "gotest.tools/v3/assert" - is "gotest.tools/v3/assert/cmp" - - // Prevents a circular import with "github.com/docker/cli/internal/test" - - . "github.com/docker/cli/cli/command" + . "github.com/docker/cli/cli/command" // Prevents a circular import with "github.com/docker/cli/internal/test" configtypes "github.com/docker/cli/cli/config/types" "github.com/docker/cli/internal/test" "github.com/docker/docker/api/types" "github.com/docker/docker/client" + "gotest.tools/v3/assert" + is "gotest.tools/v3/assert/cmp" ) type fakeClient struct {