Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-07-01 19:14:17 +0300
committerSean McGivern <sean@gitlab.com>2019-07-01 19:14:17 +0300
commit8608da87064f4423abd745435736ac3e65a58054 (patch)
tree01da3281372efe54a60ea32052698714dbc6ab64 /db
parent793b36f9b2c0e2a94d5a4d3a7685495be2e6e0b8 (diff)
parentfda3c9bc934b7e378b9c86bc2ff7ad9278311226 (diff)
Merge branch 'db-fixtures' into 'master'
db.fixtures: use print instead of puts See merge request gitlab-org/gitlab-ce!30134
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/24_forks.rb4
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