remove hard-coded '.rhtml' from "test_show_by_anonymous" of functional issues controller test (#6317).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7027 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
9281df1bff
commit
73c25b1320
|
@ -326,7 +326,7 @@ class IssuesControllerTest < ActionController::TestCase
|
|||
def test_show_by_anonymous
|
||||
get :show, :id => 1
|
||||
assert_response :success
|
||||
assert_template 'show.rhtml'
|
||||
assert_template 'show'
|
||||
assert_not_nil assigns(:issue)
|
||||
assert_equal Issue.find(1), assigns(:issue)
|
||||
|
||||
|
|
Loading…
Reference in New Issue