remove hard-coded '.rhtml' from "test_index_with_query_grouped_by_tracker" of functional issues controller test (#6317).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7031 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-02 00:16:01 +00:00
parent 148ef588d5
commit 2693a4b808

View File

@ -178,7 +178,7 @@ class IssuesControllerTest < ActionController::TestCase
def test_index_with_query_grouped_by_tracker
get :index, :project_id => 1, :query_id => 6
assert_response :success
assert_template 'index.rhtml'
assert_template 'index'
assert_not_nil assigns(:issues)
assert_not_nil assigns(:issue_count_by_group)
end