##// END OF EJS Templates
remove hard-coded '.rhtml' from "test_index_with_query" of functional issues controller test (#6317)....
Toshi MARUYAMA -
r6910:148ef588d533
parent child
Show More
@@ -170,7 +170,7 class IssuesControllerTest < ActionController::TestCase
170 def test_index_with_query
170 def test_index_with_query
171 get :index, :project_id => 1, :query_id => 5
171 get :index, :project_id => 1, :query_id => 5
172 assert_response :success
172 assert_response :success
173 assert_template 'index.rhtml'
173 assert_template 'index'
174 assert_not_nil assigns(:issues)
174 assert_not_nil assigns(:issues)
175 assert_nil assigns(:issue_count_by_group)
175 assert_nil assigns(:issue_count_by_group)
176 end
176 end
General Comments 0
You need to be logged in to leave comments. Login now