Skip to content
代码片段 群组 项目
提交 a16f8f5d 编辑于 作者: Stanislav Lashmanov's avatar Stanislav Lashmanov
浏览文件

Change revoked approvals to reset approvals

Changelog: other
上级 5820c6d4
No related branches found
No related tags found
无相关合并请求
......@@ -13,7 +13,7 @@ def merge_when_checks_pass(sha)
#
# Example Note text:
#
# "revoked approvals from @user3, @user4, and @user5 by pushing to the branch"
# "reset approvals from @user3, @user4, and @user5 by pushing to the branch"
#
# Returns the created Note object
def approvals_reset(cause, approvers)
......@@ -21,7 +21,7 @@ def approvals_reset(cause, approvers)
return unless cause == :new_push
return if approvers.empty?
body = "revoked approvals from #{approvers.map(&:to_reference).to_sentence} by pushing to the branch"
body = "reset approvals from #{approvers.map(&:to_reference).to_sentence} by pushing to the branch"
create_note(NoteSummary.new(noteable, project, author, body, action: 'approvals_reset'))
end
......
......@@ -45,7 +45,7 @@
it 'sets the note text' do
expect(approvals_reset_note.note)
.to eq("revoked approvals from #{approvers.map(&:to_reference).to_sentence} by pushing to the branch")
.to eq("reset approvals from #{approvers.map(&:to_reference).to_sentence} by pushing to the branch")
end
context 'when cause is not new_push' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册