diff options
author | Lunny Xiao | 2023-02-01 06:11:48 +0800 |
---|---|---|
committer | GitHub | 2023-01-31 22:11:48 +0000 |
commit | cc910014ab0df4d252ee61995df37b4a4cb92e06 (patch) | |
tree | d7a9344c02ed0531fcca0f6d9128498ea37bcfac /tests | |
parent | f1f0430f9fd731310713ad723bed9618bcd53cda (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.go | 2 |
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) }) } |