diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-04 13:40:30 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-04 13:40:30 +0000 |
commit | 177906a75f018cc52130e84e628a513f64ba1669 (patch) | |
tree | b18f177c4b221d2a1661591212ed79e4bbe65f76 /test/functional | |
parent | 85699042a69cbed55abbe4ead3427b315af5d9cc (diff) | |
download | redmine-177906a75f018cc52130e84e628a513f64ba1669.tar.gz redmine-177906a75f018cc52130e84e628a513f64ba1669.zip |
remove hard-coded '.rxml' from 'test_show_atom' at functional issues controller test (#6317)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7576 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/issues_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 1b79cc1c1..7e67b8ce8 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -469,7 +469,7 @@ class IssuesControllerTest < ActionController::TestCase def test_show_atom get :show, :id => 2, :format => 'atom' assert_response :success - assert_template 'journals/index.rxml' + assert_template 'journals/index' # Inline image assert_select 'content', :text => Regexp.new(Regexp.quote('http://test.host/attachments/download/10')) end |