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:
authorPeter Leitzen <peter@leitzen.de>2018-07-30 23:17:19 +0300
committerNick Thomas <nick@gitlab.com>2018-07-30 23:17:19 +0300
commit341d379e07cd14c1d944a421b66ebb0c583c8cba (patch)
tree37b16328928ff43a7fd950e5db4966c086eb27cb /spec/workers
parent1adfb156e85c270470fb10792cead9ff31b6687c (diff)
Fix typos in CreateGpgSignatureWorker spec
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/create_gpg_signature_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/create_gpg_signature_worker_spec.rb b/spec/workers/create_gpg_signature_worker_spec.rb
index 647a4bcc18e..502765e9786 100644
--- a/spec/workers/create_gpg_signature_worker_spec.rb
+++ b/spec/workers/create_gpg_signature_worker_spec.rb
@@ -25,7 +25,7 @@ describe CreateGpgSignatureWorker do
subject
end
- it 'can recover form exception and continue the siganture frocess' do
+ it 'can recover from exception and continue the signature process' do
allow(gpg_commit).to receive(:signature)
allow(Gitlab::Gpg::Commit).to receive(:new).and_return(gpg_commit)
allow(Gitlab::Gpg::Commit).to receive(:new).with(commits.first).and_raise(StandardError)