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-05-04 18:22:06 +0300
committerJames Lopez <james@jameslopez.es>2018-05-04 18:22:06 +0300
commit4f04aeec80bbfcb025e321693e6ca99b01244bb4 (patch)
tree9ff5bec5a131eca57a0a0d17dc715bae904e402d /spec/models/project_spec.rb
parentbc7ea2d4386f5624676e7a2ffb196de19d52910b (diff)
fix missing space
Diffstat (limited to 'spec/models/project_spec.rb')
-rw-r--r--spec/models/project_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/project_spec.rb b/spec/models/project_spec.rb
index ce9783db062..c88510020c8 100644
--- a/spec/models/project_spec.rb
+++ b/spec/models/project_spec.rb
@@ -105,7 +105,7 @@ describe Project do
it 'does not raise an error' do
project = create(:project)
- expect{ project.update(ci_cd_settings: nil) }.not_to raise_exception
+ expect { project.update(ci_cd_settings: nil) }.not_to raise_exception
end
end