diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-02 01:08:58 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-02 01:08:58 +0000 |
commit | 8915a90f69789054d51978d2ba18375dc7279ebf (patch) | |
tree | 2be4beabff4a62c71536e262ae22705d60ebe445 /test/functional/issues_controller_test.rb | |
parent | 6331a3ab4b91e7a92b9bfcefbf3e0587d11f90d0 (diff) | |
download | redmine-8915a90f69789054d51978d2ba18375dc7279ebf.tar.gz redmine-8915a90f69789054d51978d2ba18375dc7279ebf.zip |
remove hard-coded '.rhtml' from "test_index" of functional issues controller test (#6317).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7034 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/issues_controller_test.rb')
-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 04da7af51..e733a5206 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -55,7 +55,7 @@ class IssuesControllerTest < ActionController::TestCase get :index assert_response :success - assert_template 'index.rhtml' + assert_template 'index' assert_not_nil assigns(:issues) assert_nil assigns(:project) assert_tag :tag => 'a', :content => /Can't print recipes/ |