From ff49d95e1c435905d6c13d5e8a41751632dc1a47 Mon Sep 17 00:00:00 2001 From: Nikita Kotikov Date: Tue, 6 Feb 2024 01:20:59 +0200 Subject: [PATCH] fix: Change zotregistry domain in new files Signed-off-by: Nikita Kotikov --- pkg/api/htpasswd.go | 4 ++-- pkg/api/htpasswd_test.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/api/htpasswd.go b/pkg/api/htpasswd.go index 5551eec5ed..72c02a8f73 100644 --- a/pkg/api/htpasswd.go +++ b/pkg/api/htpasswd.go @@ -10,8 +10,8 @@ import ( "golang.org/x/crypto/bcrypt" - zerr "zotregistry.io/zot/errors" - "zotregistry.io/zot/pkg/storage/constants" + zerr "zotregistry.dev/zot/errors" + "zotregistry.dev/zot/pkg/storage/constants" ) const ( diff --git a/pkg/api/htpasswd_test.go b/pkg/api/htpasswd_test.go index 7779ee5b70..74c5de3799 100644 --- a/pkg/api/htpasswd_test.go +++ b/pkg/api/htpasswd_test.go @@ -8,9 +8,9 @@ import ( . "github.com/smartystreets/goconvey/convey" "golang.org/x/crypto/bcrypt" - zerr "zotregistry.io/zot/errors" - "zotregistry.io/zot/pkg/api" - test "zotregistry.io/zot/pkg/test/common" + zerr "zotregistry.dev/zot/errors" + "zotregistry.dev/zot/pkg/api" + test "zotregistry.dev/zot/pkg/test/common" ) func TestHtpasswdClient_ChangePassword(t *testing.T) {