diff options
Diffstat (limited to 'modules/packages/container/metadata_test.go')
-rw-r--r-- | modules/packages/container/metadata_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/packages/container/metadata_test.go b/modules/packages/container/metadata_test.go index 195b3982cb..665499b2e6 100644 --- a/modules/packages/container/metadata_test.go +++ b/modules/packages/container/metadata_test.go @@ -17,9 +17,9 @@ func TestParseImageConfig(t *testing.T) { description := "Image Description" author := "Gitea" license := "MIT" - projectURL := "https://gitea.io" + projectURL := "https://gitea.com" repositoryURL := "https://gitea.com/gitea" - documentationURL := "https://docs.gitea.io" + documentationURL := "https://docs.gitea.com" configOCI := `{"config": {"labels": {"` + labelAuthors + `": "` + author + `", "` + labelLicenses + `": "` + license + `", "` + labelURL + `": "` + projectURL + `", "` + labelSource + `": "` + repositoryURL + `", "` + labelDocumentation + `": "` + documentationURL + `", "` + labelDescription + `": "` + description + `"}}, "history": [{"created_by": "do it 1"}, {"created_by": "dummy #(nop) do it 2"}]}` |