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:
authorJames Lopez <james@jameslopez.es>2018-09-07 15:43:51 +0300
committerJames Lopez <james@jameslopez.es>2018-09-07 15:43:51 +0300
commitf1277fbf0bbe8de330d5d80fdfe411a0c8571022 (patch)
tree8aa895e931eba976ccfa29867625759eb8441c4c /spec/lib/gitlab/import_export/after_export_strategies
parent27442862cf81881c81552e64d0b4d3354535c45e (diff)
refactor code based on feedback
Diffstat (limited to 'spec/lib/gitlab/import_export/after_export_strategies')
-rw-r--r--spec/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy_spec.rb b/spec/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy_spec.rb
index df8e06d8ec5..9a442de2900 100644
--- a/spec/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy_spec.rb
+++ b/spec/lib/gitlab/import_export/after_export_strategies/base_after_export_strategy_spec.rb
@@ -12,7 +12,7 @@ describe Gitlab::ImportExport::AfterExportStrategies::BaseAfterExportStrategy do
end
it 'returns if project exported file is not found' do
- allow(project).to receive(:export_project_exists?).and_return(false)
+ allow(project).to receive(:export_file_exists?).and_return(false)
expect(service).not_to receive(:strategy_execute)