diff options
author | eyjhbb@gmail.com <eyjhbb@gmail.com> | 2019-06-27 19:29:29 +0200 |
---|---|---|
committer | eyjhbb@gmail.com <eyjhbb@gmail.com> | 2019-06-27 19:29:29 +0200 |
commit | fda3c9bc934b7e378b9c86bc2ff7ad9278311226 (patch) | |
tree | e36dd4d02de25e53fd3dca9052b235651bf8bbee /db | |
parent | 1d78c69c6210b6bb852b8668b3f75b058e3b5a16 (diff) | |
download | gitlab-ce-fda3c9bc934b7e378b9c86bc2ff7ad9278311226.tar.gz |
db.fixtures: use print instead of puts
Diffstat (limited to 'db')
-rw-r--r-- | db/fixtures/development/24_forks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/fixtures/development/24_forks.rb b/db/fixtures/development/24_forks.rb index 5eb5956ec74..d05d27c3ed5 100644 --- a/db/fixtures/development/24_forks.rb +++ b/db/fixtures/development/24_forks.rb @@ -13,9 +13,9 @@ Sidekiq::Testing.inline! do fork_project = Projects::ForkService.new(source_project, user, namespace: user.namespace).execute if fork_project.valid? - puts '.' + print '.' else - puts 'F' + print 'F' end end end |