]> source.dussan.org Git - redmine.git/commitdiff
remove hard-coded '.rhtml' from "test_show_by_anonymous" of functional issues control...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 2 Sep 2011 00:13:02 +0000 (00:13 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 2 Sep 2011 00:13:02 +0000 (00:13 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7027 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb

index 37f60070b2e6c635600fa9605b1eeeac1d9efd56..5fe18b78fdcc2ef19c1f30529e1c13dca8eb9dce 100644 (file)
@@ -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)