diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/helpers/icons_helper_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/icons_helper_spec.rb b/spec/helpers/icons_helper_spec.rb index c28f986f0e0..ddefc3862ae 100644 --- a/spec/helpers/icons_helper_spec.rb +++ b/spec/helpers/icons_helper_spec.rb @@ -31,7 +31,7 @@ describe IconsHelper do it 'returns an absolute URL on that asset host' do 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 @@ -162,6 +162,6 @@ describe IconsHelper do end def icons_path - ActionController::Base.helpers.image_path("icons.svg", host: Gitlab.config.gitlab.url) + ActionController::Base.helpers.image_path("icons.svg") end end |