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:
authorAlejandro Rodríguez <alejorro70@gmail.com>2018-01-04 04:47:25 +0300
committerAlejandro Rodríguez <alejorro70@gmail.com>2018-01-05 21:17:53 +0300
commit0b07be594e932cd9eb135b82e10931495350cb21 (patch)
tree0d7bed9bba42b62870c058c007c8d7860d6ead3f /spec/services/files
parent3d162d192ba2a57776de62b553a2a0a9a9245f8a (diff)
Move git operations for multi_action into Gitlab::Git
Diffstat (limited to 'spec/services/files')
-rw-r--r--spec/services/files/multi_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/files/multi_service_spec.rb b/spec/services/files/multi_service_spec.rb
index 2b79609930c..b9971776b33 100644
--- a/spec/services/files/multi_service_spec.rb
+++ b/spec/services/files/multi_service_spec.rb
@@ -41,7 +41,7 @@ describe Files::MultiService do
describe '#execute' do
context 'with a valid action' do
- it 'returns a hash with the :success status ' do
+ it 'returns a hash with the :success status' do
results = subject.execute
expect(results[:status]).to eq(:success)
@@ -51,7 +51,7 @@ describe Files::MultiService do
context 'with an invalid action' do
let(:action) { 'rename' }
- it 'returns a hash with the :error status ' do
+ it 'returns a hash with the :error status' do
results = subject.execute
expect(results[:status]).to eq(:error)