summaryrefslogtreecommitdiff
path: root/spec/support/import_export
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-11-02 21:09:10 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-11-02 21:09:10 +0000
commita97f1426db3f521d2fcf699fa106a2ca4eddb801 (patch)
tree01ab04f8cd044e46998602cabe5bc77285bad782 /spec/support/import_export
parent77cf68da37567a0432108d6755b6c7578e5b7dc8 (diff)
downloadgitlab-ce-a97f1426db3f521d2fcf699fa106a2ca4eddb801.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/import_export')
-rw-r--r--spec/support/import_export/common_util.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/import_export/common_util.rb b/spec/support/import_export/common_util.rb
index c0c3559cca0..ae951ea35af 100644
--- a/spec/support/import_export/common_util.rb
+++ b/spec/support/import_export/common_util.rb
@@ -15,7 +15,7 @@ module ImportExport
export_path = [prefix, 'spec', 'fixtures', 'lib', 'gitlab', 'import_export', name].compact
export_path = File.join(*export_path)
- allow_any_instance_of(Gitlab::ImportExport).to receive(:export_path) { export_path }
+ allow(Gitlab::ImportExport).to receive(:export_path) { export_path }
end
def setup_reader(reader)