Skip to content

Commit c6397d3

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 0441231 commit c6397d3

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
@@ -131,7 +131,7 @@ func TestPR(t *testing.T, topts *TestOpts) (context.Context, func()) {
131131
hookURL := os.Getenv("TEST_GITEA_SMEEURL")
132132
topts.InternalGiteaURL = os.Getenv("TEST_GITEA_INTERNAL_URL")
133133
if topts.InternalGiteaURL == "" {
134-
topts.InternalGiteaURL = "http://forgejo.forgejo:3000"
134+
topts.InternalGiteaURL = "http://forgejo-http.forgejo:3000"
135135
}
136136
if topts.ExtraArgs == nil {
137137
topts.ExtraArgs = map[string]string{}

0 commit comments

Comments
 (0)