diff options
author | Marin Jankovski <marin@gitlab.com> | 2014-01-23 10:09:19 +0100 |
---|---|---|
committer | Marin Jankovski <marin@gitlab.com> | 2014-01-23 10:09:19 +0100 |
commit | 5e08f8134ebb695c15bf9c8f1899efdb68c7336f (patch) | |
tree | ca1736abf67bc206005ae6dcd1b9aa39aadb0b72 /db/fixtures | |
parent | 68590fddd860c5d840d8f04314ed11f0d02ddd44 (diff) | |
download | gitlab-ce-5e08f8134ebb695c15bf9c8f1899efdb68c7336f.tar.gz |
Replace context with service in development seed data.
Diffstat (limited to 'db/fixtures')
-rw-r--r-- | db/fixtures/development/04_project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/04_project.rb b/db/fixtures/development/04_project.rb index 990575306c3..50726a5a51e 100644 --- a/db/fixtures/development/04_project.rb +++ b/db/fixtures/development/04_project.rb @@ -40,7 +40,7 @@ project_urls.each_with_index do |url, i| description: Faker::Lorem.sentence } - project = Projects::CreateContext.new(User.first, params).execute + project = Projects::CreateService.new(User.first, params).execute if project.valid? print '.' |