##// END OF EJS Templates
Rails4: replace deprecated Relation#first with finder options at WikiControllerTest...
Toshi MARUYAMA -
r12360:378a3e684fae
parent child
Show More
@@ -953,7 +953,7 class WikiControllerTest < ActionController::TestCase
953 'description' => 'test file'}
953 'description' => 'test file'}
954 }
954 }
955 end
955 end
956 attachment = Attachment.first(:order => 'id DESC')
956 attachment = Attachment.order('id DESC').first
957 assert_equal Wiki.find(1).find_page('CookBook_documentation'), attachment.container
957 assert_equal Wiki.find(1).find_page('CookBook_documentation'), attachment.container
958 end
958 end
959 end
959 end
General Comments 0
You need to be logged in to leave comments. Login now