Commit 6438c288 authored by Douwe Maan's avatar Douwe Maan

Satisfy Rubocop

parent ab3d855c
......@@ -88,7 +88,7 @@ describe Issue, "Issuable" do
allow(issue).to receive(:assignee).and_return(nil)
expect(issue.card_attributes).
to eq({'Author' => 'Robert', 'Assignee' => nil})
to eq({ 'Author' => 'Robert', 'Assignee' => nil })
end
it 'includes the assignee name' do
......@@ -96,7 +96,7 @@ describe Issue, "Issuable" do
allow(issue).to receive(:assignee).and_return(double(name: 'Douwe'))
expect(issue.card_attributes).
to eq({'Author' => 'Robert', 'Assignee' => 'Douwe'})
to eq({ 'Author' => 'Robert', 'Assignee' => 'Douwe' })
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