diff options
author | Rémy Coutable <remy@rymai.me> | 2017-03-20 14:47:50 +0100 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-03-20 14:47:50 +0100 |
commit | 04f62ac235f9b5e8b33ff2429cec3376a7608738 (patch) | |
tree | ea838984068844524419f3b499d7970307062eee /db | |
parent | 915af2dc5ae903d0007f5c2c75518483e00ab610 (diff) | |
download | gitlab-ce-04f62ac235f9b5e8b33ff2429cec3376a7608738.tar.gz |
Remove useless options from db/fixtures/development/17_cycle_analytics.rb
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'db')
-rw-r--r-- | db/fixtures/development/17_cycle_analytics.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/17_cycle_analytics.rb b/db/fixtures/development/17_cycle_analytics.rb index aea0a72b633..4bc735916c1 100644 --- a/db/fixtures/development/17_cycle_analytics.rb +++ b/db/fixtures/development/17_cycle_analytics.rb @@ -155,7 +155,7 @@ class Gitlab::Seeder::CycleAnalytics issue.project.repository.add_branch(@user, branch_name, 'master') - commit_sha = issue.project.repository.create_file(@user, filename, "content", options, message: "Commit for ##{issue.iid}", branch_name: branch_name) + commit_sha = issue.project.repository.create_file(@user, filename, "content", message: "Commit for ##{issue.iid}", branch_name: branch_name) issue.project.repository.commit(commit_sha) GitPushService.new(issue.project, |