From: Toshi MARUYAMA Date: Fri, 2 Sep 2011 00:13:02 +0000 (+0000) Subject: remove hard-coded '.rhtml' from "test_show_by_anonymous" of functional issues control... X-Git-Tag: 1.3.0~936 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=73c25b13202a838683b45582eb6070656705204d;p=redmine.git 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 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 37f60070b..5fe18b78f 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -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)