diff options
author | silverwind <me@silverwind.io> | 2017-08-14 00:49:38 +0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2017-08-13 19:49:38 -0300 |
commit | fc29a405e8c210fa62ad4cbe4250617e4b85d6c8 (patch) | |
tree | 8b42916d036abc7d6c8f77dbaa3db2ad2724fa68 /integrations/pull_create_test.go | |
parent | 29f3a6e492daa80a2ce5e3693743aa2448f391d9 (diff) | |
download | gitea-fc29a405e8c210fa62ad4cbe4250617e4b85d6c8.tar.gz gitea-fc29a405e8c210fa62ad4cbe4250617e4b85d6c8.zip |
More tweaks to repo top panel (#2267)
* More tweaks to repo top panel
* undo hiding of compare button on master
* attempt to fix ci issue
* another ci attempt
Diffstat (limited to 'integrations/pull_create_test.go')
-rw-r--r-- | integrations/pull_create_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integrations/pull_create_test.go b/integrations/pull_create_test.go index ee7a92ce2c..7db1ce1ecf 100644 --- a/integrations/pull_create_test.go +++ b/integrations/pull_create_test.go @@ -19,7 +19,7 @@ func testPullCreate(t *testing.T, session *TestSession, user, repo, branch strin // Click the little green button to create a pull htmlDoc := NewHTMLParser(t, resp.Body) - link, exists := htmlDoc.doc.Find("button.ui.green.small.button").Parent().Attr("href") + link, exists := htmlDoc.doc.Find("button.ui.green.tiny.compact.button").Parent().Attr("href") assert.True(t, exists, "The template has changed") if branch != "master" { link = strings.Replace(link, ":master", ":"+branch, 1) |