Skip to content

Commit cdbfb2e

Browse files
committed
fix
1 parent 8f20308 commit cdbfb2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

models/issues/pull_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ func TestGetApprovers(t *testing.T) {
335335
// to assert that there are no duplicated approvers.
336336
setting.Repository.PullRequest.DefaultMergeMessageOfficialApproversOnly = false
337337
approvers := pr.GetApprovers()
338-
expected := "Reviewed-by: User Five <[email protected]>\nReviewed-by: User Six <[email protected]>\n"
338+
expected := "Reviewed-by: User Five <[email protected]>\nReviewed-by: Org Six <[email protected]>\n"
339339
assert.EqualValues(t, expected, approvers)
340340
}
341341

tests/integration/api_org_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func TestAPIGetAll(t *testing.T) {
180180

181181
DecodeJSON(t, resp, &apiOrgList)
182182
assert.Len(t, apiOrgList, 7)
183-
assert.Equal(t, "org25", apiOrgList[0].FullName)
183+
assert.Equal(t, "org 17", apiOrgList[0].FullName)
184184
assert.Equal(t, "public", apiOrgList[0].Visibility)
185185
}
186186

0 commit comments

Comments
 (0)