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

Satisfy Rubocop

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