Skip to content

Commit 0441231

Browse files
committed
fix: add http suffix in provider url for forgejo
when I run e2e tests locally I get error. this adds suffix to git_provider.url in e2e tests crd creation to run them locally. Signed-off-by: Zaki Shaikh <zashaikh@redhat.com>
1 parent a21ae43 commit 0441231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/pkg/gitea/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func NewPR(t *testing.T, topts *TestOpts) func() {
310310
topts.GiteaPassword = giteaPassword
311311
topts.InternalGiteaURL = os.Getenv("TEST_GITEA_INTERNAL_URL")
312312
if topts.InternalGiteaURL == "" {
313-
topts.InternalGiteaURL = "http://forgejo.forgejo:3000"
313+
topts.InternalGiteaURL = "http://forgejo-http.forgejo:3000"
314314
}
315315
if topts.ExtraArgs == nil {
316316
topts.ExtraArgs = map[string]string{}

0 commit comments

Comments
 (0)