Skip to content

Commit

Permalink
attempt to fix integration
Browse files Browse the repository at this point in the history
  • Loading branch information
silverwind committed Aug 1, 2022
1 parent c0c8c13 commit 797ee62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/pull_create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch, titl

// Click the PR button to create a pull
htmlDoc := NewHTMLParser(t, resp.Body)
link, exists := htmlDoc.doc.Find("#new-pull-request").Parent().Attr("href")
link, exists := htmlDoc.doc.Find("#new-pull-request").Attr("href")
assert.True(t, exists, "The template has changed")
if branch != "master" {
link = strings.Replace(link, ":master", ":"+branch, 1)
Expand Down

0 comments on commit 797ee62

Please sign in to comment.