##// END OF EJS Templates
Rails4: replace deprecated Relation#first with finder options at NewsControllerTest...
Toshi MARUYAMA -
r12246:4f28ed2fb48b
parent child
Show More
@@ -144,7 +144,7 class NewsControllerTest < ActionController::TestCase
144 144 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
145 145 end
146 146 end
147 attachment = Attachment.first(:order => 'id DESC')
147 attachment = Attachment.order('id DESC').first
148 148 assert_equal News.find(1), attachment.container
149 149 end
150 150
General Comments 0
You need to be logged in to leave comments. Login now