Little fix for Rubocop's complaints. #2296

This commit is contained in:
Rubén Dávila 2015-11-20 14:27:31 -05:00
parent 3aabed3456
commit 976cebe456
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ describe Issues::UpdateService do
end
it 'should not generate a new note at all' do
expect {
expect do
update_issue({ description: "- [ ] One\n- [ ] Two\n- [ ] Three" })
}.not_to change { Note.count }
end.not_to change { Note.count }
end
end
end