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
1 merge request!2192Add Open Graph meta tags
Loading
@@ -88,7 +88,7 @@ describe Issue, "Issuable" do
Loading
@@ -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
Loading
@@ -96,7 +96,7 @@ describe Issue, "Issuable" do
Loading
@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment