diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-05-17 13:58:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 19:58:42 +0800 |
commit | 9ea9206406583f3402be2630c57133f810c460d2 (patch) | |
tree | fa12c950786c247d4b8cea9503d8e894c7e6b99d /integrations | |
parent | 6d54799bbcce3ccaa27e3660b4a47f1bee039601 (diff) | |
download | gitea-9ea9206406583f3402be2630c57133f810c460d2.tar.gz gitea-9ea9206406583f3402be2630c57133f810c460d2.zip |
ContainerRegistry - removed Basic Auth header (#19735)
* Removed Basic Auth header.
* Fixed test.
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/api_packages_container_test.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/integrations/api_packages_container_test.go b/integrations/api_packages_container_test.go index a8f49423e2..2b5be9dd4c 100644 --- a/integrations/api_packages_container_test.go +++ b/integrations/api_packages_container_test.go @@ -66,10 +66,7 @@ func TestPackageContainer(t *testing.T) { Token string `json:"token"` } - authenticate := []string{ - `Bearer realm="` + setting.AppURL + `v2/token"`, - `Basic`, - } + authenticate := []string{`Bearer realm="` + setting.AppURL + `v2/token"`} t.Run("Anonymous", func(t *testing.T) { defer PrintCurrentTest(t)() |