diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-02 01:41:22 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-02 01:41:22 +0000 |
commit | e07a792773cf1957c0e28bcf4987c4f54c275c91 (patch) | |
tree | ad4b53a3464639b6dbf788a31e559a52eac5a337 /test/functional/issues_controller_test.rb | |
parent | 2798565eccb94534d030d5ec2b4a516648bded6c (diff) | |
download | redmine-e07a792773cf1957c0e28bcf4987c4f54c275c91.tar.gz redmine-e07a792773cf1957c0e28bcf4987c4f54c275c91.zip |
remove hard-coded '.rhtml' from "test_index_with_project" of functional issues controller test (#6317).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7039 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 1a7703b5e..c9ae6109a 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -89,7 +89,7 @@ class IssuesControllerTest < ActionController::TestCase Setting.display_subprojects_issues = 0 get :index, :project_id => 1 assert_response :success - assert_template 'index.rhtml' + assert_template 'index' assert_not_nil assigns(:issues) assert_tag :tag => 'a', :content => /Can't print recipes/ assert_no_tag :tag => 'a', :content => /Subproject issue/ |