db.fixtures: use print instead of puts

This commit is contained in:
eyjhbb@gmail.com 2019-06-27 19:29:29 +02:00
parent 1d78c69c62
commit fda3c9bc93
1 changed files with 2 additions and 2 deletions

View File

@ -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