Skip to content
Snippets Groups Projects
Commit 6438c288 authored by Douwe Maan's avatar Douwe Maan
Browse files

Satisfy Rubocop

parent ab3d855c
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment