summaryrefslogtreecommitdiffstats
path: root/test/integration
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-02-13 22:54:36 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-02-13 22:54:36 +0000
commitf486091b24781767958c413c6831a7d8258e47cf (patch)
tree4098bf6ed903ce265606b94e0e2b571a62e18ed8 /test/integration
parent437e46aa45c2eebc9a0527c479574ae8403f070a (diff)
downloadredmine-f486091b24781767958c413c6831a7d8258e47cf.tar.gz
redmine-f486091b24781767958c413c6831a7d8258e47cf.zip
Fix one more failing test related to favicon after r22692 (#39111).
git-svn-id: https://svn.redmine.org/redmine/trunk@22706 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/feeds_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/feeds_test.rb b/test/integration/feeds_test.rb
index febaa14e6..139e8f1e5 100644
--- a/test/integration/feeds_test.rb
+++ b/test/integration/feeds_test.rb
@@ -28,6 +28,6 @@ class FeedsTest < Redmine::IntegrationTest
def test_feeds_should_include_icon_tag
get '/projects.atom'
assert_response :success
- assert_select 'feed>icon', :text => %r{^http://www.example.com/favicon.ico}
+ assert_select 'feed>icon', :text => %r{^http://www.example.com/assets/favicon-\w+.ico}
end
end