From 341d379e07cd14c1d944a421b66ebb0c583c8cba Mon Sep 17 00:00:00 2001 From: Peter Leitzen Date: Mon, 30 Jul 2018 20:17:19 +0000 Subject: [PATCH] Fix typos in CreateGpgSignatureWorker spec --- spec/workers/create_gpg_signature_worker_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- GitLab