aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLunny Xiao2023-02-01 06:11:48 +0800
committerGitHub2023-01-31 22:11:48 +0000
commitcc910014ab0df4d252ee61995df37b4a4cb92e06 (patch)
treed7a9344c02ed0531fcca0f6d9128498ea37bcfac /tests
parentf1f0430f9fd731310713ad723bed9618bcd53cda (diff)
Fix wrong hint when deleting a branch successfully from pull request UI (#22673)
Fix #18785
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/pull_merge_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/pull_merge_test.go b/tests/integration/pull_merge_test.go
index 491fc0e0a..e80822a75 100644
--- a/tests/integration/pull_merge_test.go
+++ b/tests/integration/pull_merge_test.go
@@ -187,7 +187,7 @@ func TestPullCleanUpAfterMerge(t *testing.T) {
htmlDoc := NewHTMLParser(t, resp.Body)
resultMsg := htmlDoc.doc.Find(".ui.message>p").Text()
- assert.EqualValues(t, "Branch 'user1/feature/test' has been deleted.", resultMsg)
+ assert.EqualValues(t, "Branch 'user1/repo1:feature/test' has been deleted.", resultMsg)
})
}