Commit 8608da87 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'db-fixtures' into 'master'

db.fixtures: use print instead of puts

See merge request gitlab-org/gitlab-ce!30134
parents 793b36f9 fda3c9bc
...@@ -13,9 +13,9 @@ Sidekiq::Testing.inline! do ...@@ -13,9 +13,9 @@ Sidekiq::Testing.inline! do
fork_project = Projects::ForkService.new(source_project, user, namespace: user.namespace).execute fork_project = Projects::ForkService.new(source_project, user, namespace: user.namespace).execute
if fork_project.valid? if fork_project.valid?
puts '.' print '.'
else else
puts 'F' print 'F'
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment