1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

Fix failing tests related to favicon in themes after r22692 (#39111).

git-svn-id: https://svn.redmine.org/redmine/trunk@22705 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2024-02-13 22:14:34 +00:00
parent d896a2d546
commit 437e46aa45
2 changed files with 2 additions and 2 deletions

View File

@ -1749,7 +1749,7 @@ module ApplicationHelper
end
def favicon
favicon_link_tag(favicon_path, rel: "icon shortcut")
favicon_link_tag(favicon_path, rel: "shortcut icon")
end
# Returns the path to the favicon

View File

@ -63,7 +63,7 @@ class ThemesTest < Redmine::IntegrationTest
get '/'
assert_response :success
assert_select 'link[rel="shortcut icon"][href^="/favicon.ico"]'
assert_select "link[rel='shortcut icon']:match('href',?)", %r{/assets/favicon-\w+\.ico}
end
def test_use_theme_favicon_if_theme_provides_one