diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-11 07:46:29 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-11 07:46:29 +0000 |
commit | e30aa4b2457b6e061120c5a83641ae6693a34ba1 (patch) | |
tree | 1e19a0fb923726eff81e708a5e010a915446fa9d /test/functional/messages_controller_test.rb | |
parent | 20482fdee3e2ca57174d30a63ee7390823c99df6 (diff) | |
download | redmine-e30aa4b2457b6e061120c5a83641ae6693a34ba1.tar.gz redmine-e30aa4b2457b6e061120c5a83641ae6693a34ba1.zip |
code format cleanup MessagesControllerTest
git-svn-id: http://svn.redmine.org/redmine/trunk@12623 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/messages_controller_test.rb')
-rw-r--r-- | test/functional/messages_controller_test.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/functional/messages_controller_test.rb b/test/functional/messages_controller_test.rb index a4dee170d..d6e7da9a8 100644 --- a/test/functional/messages_controller_test.rb +++ b/test/functional/messages_controller_test.rb @@ -48,7 +48,10 @@ class MessagesControllerTest < ActionController::TestCase message = Message.find(1) assert_difference 'Message.count', 30 do 30.times do - message.children << Message.new(:subject => 'Reply', :content => 'Reply body', :author_id => 2, :board_id => 1) + message.children << Message.new(:subject => 'Reply', + :content => 'Reply body', + :author_id => 2, + :board_id => 1) end end get :show, :board_id => 1, :id => 1, :r => message.children.last(:order => 'id').id |