diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 19:18:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 19:18:12 +0000 |
commit | b2044e6dfc261656ee477fa0287c98bda3fa183d (patch) | |
tree | b9d50e229eb6d18ad97a05333c3c37c7ded692bd /test/integration/issues_test.rb | |
parent | 731eadc4502f7fccc85dcc2ab4c29a9da4f5a415 (diff) | |
download | redmine-b2044e6dfc261656ee477fa0287c98bda3fa183d.tar.gz redmine-b2044e6dfc261656ee477fa0287c98bda3fa183d.zip |
Don't generate urls with params.
git-svn-id: http://svn.redmine.org/redmine/trunk@15631 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/issues_test.rb')
-rw-r--r-- | test/integration/issues_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/issues_test.rb b/test/integration/issues_test.rb index 668f346d4..5cafcda4b 100644 --- a/test/integration/issues_test.rb +++ b/test/integration/issues_test.rb @@ -123,7 +123,7 @@ class IssuesTest < Redmine::IntegrationTest get '/issues', :project_id => 'ecookbook' %w(Atom PDF CSV).each do |format| - assert_select 'a[rel=nofollow][href=?]', "/projects/ecookbook/issues.#{format.downcase}", :text => format + assert_select 'a[rel=nofollow][href=?]', "/issues.#{format.downcase}?project_id=ecookbook", :text => format end end |