Commit fb1b88de authored by Tim Zallmann's avatar Tim Zallmann

Missing the local url

parent 687e7dea
...@@ -31,7 +31,7 @@ describe IconsHelper do ...@@ -31,7 +31,7 @@ describe IconsHelper do
it 'returns an absolute URL on that asset host' do it 'returns an absolute URL on that asset host' do
expect(sprite_icon_path()) expect(sprite_icon_path())
.to eq icons_path() .to eq ActionController::Base.helpers.image_path("icons.svg", host: Gitlab.config.gitlab.url)
end end
end end
end end
...@@ -162,6 +162,6 @@ describe IconsHelper do ...@@ -162,6 +162,6 @@ describe IconsHelper do
end end
def icons_path def icons_path
ActionController::Base.helpers.image_path("icons.svg", host: Gitlab.config.gitlab.url) ActionController::Base.helpers.image_path("icons.svg")
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