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

Satisfy Rubocop

parent 2f5074dc
No related branches found
No related tags found
No related merge requests found
Loading
@@ -93,7 +93,7 @@ class CommitRange
Loading
@@ -93,7 +93,7 @@ class CommitRange
   
def to_reference(from_project = nil) def to_reference(from_project = nil)
if cross_project_reference?(from_project) if cross_project_reference?(from_project)
reference = project.to_reference + self.class.reference_prefix + self.id project.to_reference + self.class.reference_prefix + self.id
else else
self.id self.id
end end
Loading
Loading
Loading
@@ -152,7 +152,7 @@ module Gitlab::Markdown
Loading
@@ -152,7 +152,7 @@ module Gitlab::Markdown
end end
   
it 'ignores invalid commit IDs on the referenced project' do it 'ignores invalid commit IDs on the referenced project' do
exp = act = "Committed #{invalidate_reference(reference)}" act = "Committed #{invalidate_reference(reference)}"
expect(reference_filter(act).to_html).to match(/<a.+>#{Regexp.escape(invalidate_reference(reference))}<\/a>/) expect(reference_filter(act).to_html).to match(/<a.+>#{Regexp.escape(invalidate_reference(reference))}<\/a>/)
end end
   
Loading
Loading
Loading
@@ -134,7 +134,7 @@ module Gitlab::Markdown
Loading
@@ -134,7 +134,7 @@ module Gitlab::Markdown
end end
   
it 'ignores invalid snippet IDs on the referenced project' do it 'ignores invalid snippet IDs on the referenced project' do
exp = act = "See #{invalidate_reference(reference)}" act = "See #{invalidate_reference(reference)}"
   
expect(reference_filter(act).to_html).to match(/<a.+>#{Regexp.escape(invalidate_reference(reference))}<\/a>/) expect(reference_filter(act).to_html).to match(/<a.+>#{Regexp.escape(invalidate_reference(reference))}<\/a>/)
end end
Loading
Loading
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