remove hard-coded '.rhtml' from "test_index_with_project_and_subprojects_should_show_private_subprojects" of functional issues controller test (#6317).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7040 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e07a792773
commit
0e0b1a0339
|
@ -111,7 +111,7 @@ class IssuesControllerTest < ActionController::TestCase
|
||||||
Setting.display_subprojects_issues = 1
|
Setting.display_subprojects_issues = 1
|
||||||
get :index, :project_id => 1
|
get :index, :project_id => 1
|
||||||
assert_response :success
|
assert_response :success
|
||||||
assert_template 'index.rhtml'
|
assert_template 'index'
|
||||||
assert_not_nil assigns(:issues)
|
assert_not_nil assigns(:issues)
|
||||||
assert_tag :tag => 'a', :content => /Can't print recipes/
|
assert_tag :tag => 'a', :content => /Can't print recipes/
|
||||||
assert_tag :tag => 'a', :content => /Subproject issue/
|
assert_tag :tag => 'a', :content => /Subproject issue/
|
||||||
|
|
Loading…
Reference in New Issue