diff options
author | Azul <azul@leap.se> | 2013-01-14 20:02:17 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-01-14 20:02:17 +0100 |
commit | 7b323c5dbd7171cf98f69ca159b5aa2174a5d069 (patch) | |
tree | 0a882f43a087c13eec8ed6a51386e2308b14c060 /help/test/factories.rb | |
parent | 581bcc0507b2f2385bf1f6d82bb119afa2f00716 (diff) |
minor: further cleanup - try to leave no record behind
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 |