##// END OF EJS Templates
remove hard-coded '.rhtml' from "test_index_with_project_and_subprojects" of functional issues controller test (#6317)....
Toshi MARUYAMA -
r6921:327027e07a7a
parent child
Show More
@@ -99,7 +99,7 class IssuesControllerTest < ActionController::TestCase
99 Setting.display_subprojects_issues = 1
99 Setting.display_subprojects_issues = 1
100 get :index, :project_id => 1
100 get :index, :project_id => 1
101 assert_response :success
101 assert_response :success
102 assert_template 'index.rhtml'
102 assert_template 'index'
103 assert_not_nil assigns(:issues)
103 assert_not_nil assigns(:issues)
104 assert_tag :tag => 'a', :content => /Can't print recipes/
104 assert_tag :tag => 'a', :content => /Can't print recipes/
105 assert_tag :tag => 'a', :content => /Subproject issue/
105 assert_tag :tag => 'a', :content => /Subproject issue/
General Comments 0
You need to be logged in to leave comments. Login now