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
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-13 13:05:06 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-13 13:08:03 +0300
commitbeffbc8aa2845d7a2859c269fd2c891cddb308e6 (patch)
tree0c9472dfed0e7cd2b73f02fd1d70211a1c02cdbc /lib/gitlab/background_migration.rb
parent433b6d2c65f0018fa67e2d8905d1cba75e7990fa (diff)
Fix mocks in background migrations specs
Diffstat (limited to 'lib/gitlab/background_migration.rb')
-rw-r--r--lib/gitlab/background_migration.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/gitlab/background_migration.rb b/lib/gitlab/background_migration.rb
index 73688421e74..e0325c0138e 100644
--- a/lib/gitlab/background_migration.rb
+++ b/lib/gitlab/background_migration.rb
@@ -32,7 +32,6 @@ module Gitlab
# arguments - The arguments to pass to the background migration's "perform"
# method.
def self.perform(class_name, arguments)
- puts class_name
const_get(class_name).new.perform(*arguments)
end
end