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:
authorYatish Mehta <yatish.mehta@coupa.com>2016-07-06 01:24:35 +0300
committerYatish Mehta <yatish.mehta@coupa.com>2016-07-06 01:24:35 +0300
commitecc279f74b925f77d5af8b6c2478550fda4d6d1b (patch)
treef2fa7535977999680710eb5c0eabf6f4fa4326d2 /spec/factories/projects.rb
parent1141eaf5c83f927ccc064b6c5d162081fdd22894 (diff)
Fix typo in factory for projects.rb
Diffstat (limited to 'spec/factories/projects.rb')
-rw-r--r--spec/factories/projects.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories/projects.rb b/spec/factories/projects.rb
index 5c8ddbebf0d..b682ced75ac 100644
--- a/spec/factories/projects.rb
+++ b/spec/factories/projects.rb
@@ -2,7 +2,7 @@ FactoryGirl.define do
# Project without repository
#
# Project does not have bare repository.
- # Use this factory if you dont need repository in tests
+ # Use this factory if you don't need repository in tests
factory :empty_project, class: 'Project' do
sequence(:name) { |n| "project#{n}" }
path { name.downcase.gsub(/\s/, '_') }