diff options
Diffstat (limited to 'integrations')
-rw-r--r-- | integrations/pull_compare_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/pull_compare_test.go b/integrations/pull_compare_test.go index dddaa391ed..b473e03653 100644 --- a/integrations/pull_compare_test.go +++ b/integrations/pull_compare_test.go @@ -18,7 +18,7 @@ func TestPullCompare(t *testing.T) { req := NewRequest(t, "GET", "/user2/repo1/pulls") resp := session.MakeRequest(t, req, http.StatusOK) htmlDoc := NewHTMLParser(t, resp.Body) - link, exists := htmlDoc.doc.Find(".navbar").Find(".ui.green.button").Attr("href") + link, exists := htmlDoc.doc.Find(".ui.three.column.grid").Find(".ui.green.button").Attr("href") assert.True(t, exists, "The template has changed") req = NewRequest(t, "GET", link) |