Skip to content

Commit 797ee62

Browse files
committed
attempt to fix integration
1 parent c0c8c13 commit 797ee62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: integrations/pull_create_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch, titl
2121

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

0 commit comments

Comments
 (0)