From: Toshi MARUYAMA Date: Fri, 2 Sep 2011 00:15:14 +0000 (+0000) Subject: remove hard-coded '.rhtml' from "test_index_with_query" of functional issues controll... X-Git-Tag: 1.3.0~933 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=148ef588d53331d835d5fc7d55834630849358c6;p=redmine.git remove hard-coded '.rhtml' from "test_index_with_query" of functional issues controller test (#6317). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7030 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index b98953460..f7ab8521e 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -170,7 +170,7 @@ class IssuesControllerTest < ActionController::TestCase def test_index_with_query get :index, :project_id => 1, :query_id => 5 assert_response :success - assert_template 'index.rhtml' + assert_template 'index' assert_not_nil assigns(:issues) assert_nil assigns(:issue_count_by_group) end