##// END OF EJS Templates
remove hard-coded '.rhtml' from "test_show_by_anonymous" of functional issues controller test (#6317)....
Toshi MARUYAMA -
r6907:73c25b13202a
parent child
Show More
@@ -326,7 +326,7 class IssuesControllerTest < ActionController::TestCase
326 326 def test_show_by_anonymous
327 327 get :show, :id => 1
328 328 assert_response :success
329 assert_template 'show.rhtml'
329 assert_template 'show'
330 330 assert_not_nil assigns(:issue)
331 331 assert_equal Issue.find(1), assigns(:issue)
332 332
General Comments 0
You need to be logged in to leave comments. Login now