diff options
author | Gabriel Mazetto <brodock@gmail.com> | 2017-08-16 04:49:54 +0200 |
---|---|---|
committer | Gabriel Mazetto <brodock@gmail.com> | 2017-08-22 06:33:20 +0200 |
commit | d17a7be8308b06b7077a7cffc5d258148ee08c87 (patch) | |
tree | 3c5e5f47644f5d605649ee977654788d4f512739 /spec/workers | |
parent | 78823675b24e82e73a523ad98f1dec78bec6976c (diff) | |
download | gitlab-ce-d17a7be8308b06b7077a7cffc5d258148ee08c87.tar.gz |
Refactor project and storage types
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/namespaceless_project_destroy_worker_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/namespaceless_project_destroy_worker_spec.rb b/spec/workers/namespaceless_project_destroy_worker_spec.rb index f2706254284..817e103fd9a 100644 --- a/spec/workers/namespaceless_project_destroy_worker_spec.rb +++ b/spec/workers/namespaceless_project_destroy_worker_spec.rb @@ -5,7 +5,7 @@ describe NamespacelessProjectDestroyWorker do before do # Stub after_save callbacks that will fail when Project has no namespace - allow_any_instance_of(Project).to receive(:ensure_storage_path_exist).and_return(nil) + allow_any_instance_of(Project).to receive(:ensure_storage_path_exists).and_return(nil) allow_any_instance_of(Project).to receive(:update_project_statistics).and_return(nil) end |