diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2017-01-06 23:50:08 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-01-07 00:31:11 +0800 |
commit | a6394540327cd3919e5189a35a21b57800a104fc (patch) | |
tree | 84e51a4b956ded88be710d33a63a8cc1276563bf /spec/lib | |
parent | ccc73c455ba0b95b531c69414a6a1f47667f16b5 (diff) | |
download | gitlab-ce-a6394540327cd3919e5189a35a21b57800a104fc.tar.gz |
Fix renaming
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/diff/position_tracer_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/gitlab/diff/position_tracer_spec.rb b/spec/lib/gitlab/diff/position_tracer_spec.rb index c268f84c759..f77ab016e9b 100644 --- a/spec/lib/gitlab/diff/position_tracer_spec.rb +++ b/spec/lib/gitlab/diff/position_tracer_spec.rb @@ -99,7 +99,7 @@ describe Gitlab::Diff::PositionTracer, lib: true do Files::CreateService.new( project, current_user, - source_branch: branch_name, + start_branch: branch_name, target_branch: branch_name, commit_message: "Create file", file_path: file_name, @@ -112,7 +112,7 @@ describe Gitlab::Diff::PositionTracer, lib: true do Files::UpdateService.new( project, current_user, - source_branch: branch_name, + start_branch: branch_name, target_branch: branch_name, commit_message: "Update file", file_path: file_name, @@ -125,7 +125,7 @@ describe Gitlab::Diff::PositionTracer, lib: true do Files::DeleteService.new( project, current_user, - source_branch: branch_name, + start_branch: branch_name, target_branch: branch_name, commit_message: "Delete file", file_path: file_name |