diff options
Diffstat (limited to 'help/test/factories.rb')
-rw-r--r-- | help/test/factories.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help/test/factories.rb b/help/test/factories.rb index 919882a..5b38952 100644 --- a/help/test/factories.rb +++ b/help/test/factories.rb @@ -3,7 +3,7 @@ FactoryGirl.define do factory :ticket do title { Faker::Lorem.sentence } comments_attributes do - { "0" => { "body" => Faker::Lorem.sentences } } + { "0" => { "body" => Faker::Lorem.sentences.join(" ") } } end end |