Skip to content

Commit 1a75b45

Browse files
committed
Fix E2E test to actualy pass
I have a dedicated GitHub organization and a private repository to run this E2E test. After a few fixes included in this change, it has successfully passed.
1 parent 40c88eb commit 1a75b45

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/e2e/e2e_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ func installActionsWorkflow(t *testing.T, testID, runnerLabel, testResultCMNameP
298298
Name: wfName,
299299
On: testing.On{
300300
Push: &testing.Push{
301-
Branches: []string{"main"},
301+
Branches: []string{"master"},
302302
},
303303
},
304304
Jobs: map[string]testing.Job{},
@@ -403,5 +403,5 @@ func verifyActionsWorkflowRun(t *testing.T, env *testing.Env, testJobs []job) {
403403
}
404404

405405
return results, err
406-
}, 60*time.Second, 10*time.Second).Should(gomega.Equal(expected))
406+
}, 3*60*time.Second, 10*time.Second).Should(gomega.Equal(expected))
407407
}

testing/git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func (g *GitRepo) gitCommitCmd(ctx context.Context, dir, msg string) *exec.Cmd {
8989
}
9090

9191
func (g *GitRepo) gitPushCmd(ctx context.Context, dir string) *exec.Cmd {
92-
cmd := exec.CommandContext(ctx, "git", "push", "origin", "main")
92+
cmd := exec.CommandContext(ctx, "git", "push", "origin", "master")
9393
cmd.Dir = dir
9494
return cmd
9595
}

0 commit comments

Comments
 (0)