diff options
author | Mayra Cabrera <mcabrera@gitlab.com> | 2018-08-10 13:45:14 +0000 |
---|---|---|
committer | Kamil TrzciĆski <ayufan@ayufan.eu> | 2018-08-10 13:45:14 +0000 |
commit | 33311cb677592e58c05e4da3cd511bef246fc9d7 (patch) | |
tree | 515e09c97655aa76c0a12259c3f4e0227a716084 /spec/support | |
parent | 91795dcd1c0d12d2350e0d00489d89be9fa29b32 (diff) | |
download | gitlab-ce-33311cb677592e58c05e4da3cd511bef246fc9d7.tar.gz |
CE Port of Protected Environments backend
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/import_export/configuration_helper.rb | 2 |
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 |