summaryrefslogtreecommitdiff
path: root/spec/support/import_export/common_util.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/import_export/common_util.rb')
-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)