Merge branch 'jivl-revert-system-notes-can-be-confusing' into 'master'

Remove comma from the time system notes

See merge request gitlab-org/gitlab-ce!18593
This commit is contained in:
Nick Thomas 2018-04-27 12:13:31 +00:00
commit c45b7ab597
2 changed files with 2 additions and 8 deletions

View file

@ -159,7 +159,7 @@ module SystemNoteService
body = if noteable.time_estimate == 0
"removed time estimate"
else
"changed time estimate to #{parsed_time},"
"changed time estimate to #{parsed_time}"
end
create_note(NoteSummary.new(noteable, project, author, body, action: 'time_tracking'))

View file

@ -909,13 +909,7 @@ describe SystemNoteService do
it 'sets the note text' do
noteable.update_attribute(:time_estimate, 277200)
expect(subject.note).to eq "changed time estimate to 1w 4d 5h,"
end
it 'appends a comma to separate the note from the update_at time' do
noteable.update_attribute(:time_estimate, 277200)
expect(subject.note).to end_with(',')
expect(subject.note).to eq "changed time estimate to 1w 4d 5h"
end
end