Commit 76bd18f6 authored by Jarka Kadlecová's avatar Jarka Kadlecová

Fix rubocop offenses (multilie block)

parent 4b50f850
...@@ -70,9 +70,9 @@ describe Epics::UpdateService do ...@@ -70,9 +70,9 @@ describe Epics::UpdateService do
end end
it 'creates todos for only newly mentioned users' do it 'creates todos for only newly mentioned users' do
expect { expect do
update_epic(description: "FYI: #{mentioned1.to_reference} #{mentioned2.to_reference}") update_epic(description: "FYI: #{mentioned1.to_reference} #{mentioned2.to_reference}")
}.to change { Todo.count }.by(1) end.to change { Todo.count }.by(1)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment