aboutsummaryrefslogtreecommitdiffstats
path: root/tests/integration/repo_branch_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/repo_branch_test.go')
-rw-r--r--tests/integration/repo_branch_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/repo_branch_test.go b/tests/integration/repo_branch_test.go
index c56aa43c51..91674ddc82 100644
--- a/tests/integration/repo_branch_test.go
+++ b/tests/integration/repo_branch_test.go
@@ -120,9 +120,9 @@ func testCreateBranches(t *testing.T, giteaURL *url.URL) {
req := NewRequest(t, "GET", redirectURL)
resp := session.MakeRequest(t, req, http.StatusOK)
htmlDoc := NewHTMLParser(t, resp.Body)
- assert.Equal(t,
- test.FlashMessage,
+ assert.Contains(t,
strings.TrimSpace(htmlDoc.doc.Find(".ui.message").Text()),
+ test.FlashMessage,
)
}
}