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:
authorMayra Cabrera <mcabrera@gitlab.com>2018-08-10 16:45:14 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2018-08-10 16:45:14 +0300
commit33311cb677592e58c05e4da3cd511bef246fc9d7 (patch)
tree515e09c97655aa76c0a12259c3f4e0227a716084 /spec/support/import_export
parent91795dcd1c0d12d2350e0d00489d89be9fa29b32 (diff)
CE Port of Protected Environments backend
Diffstat (limited to 'spec/support/import_export')
-rw-r--r--spec/support/import_export/configuration_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/import_export/configuration_helper.rb b/spec/support/import_export/configuration_helper.rb
index bbac6ca6a9c..b4164cff922 100644
--- a/spec/support/import_export/configuration_helper.rb
+++ b/spec/support/import_export/configuration_helper.rb
@@ -9,7 +9,7 @@ module ConfigurationHelper
end
def relation_class_for_name(relation_name)
- relation_name = Gitlab::ImportExport::RelationFactory::OVERRIDES[relation_name.to_sym] || relation_name
+ relation_name = Gitlab::ImportExport::RelationFactory.overrides[relation_name.to_sym] || relation_name
Gitlab::ImportExport::RelationFactory.relation_class(relation_name)
end