Fix indentation in user_selects_branches_for_new_mr_spec.rb

This commit is contained in:
Winnie Hellmann 2018-05-25 19:20:19 +00:00
parent c909a392b6
commit 0fb4239afa
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ describe 'Merge request > User selects branches for new MR', :js do
it 'escapes quotes in branch names' do
special_branch_name = '"with-quotes"'
CreateBranchService.new(project, user)
.execute(special_branch_name, 'add-pdf-file')
.execute(special_branch_name, 'add-pdf-file')
visit project_new_merge_request_path(project)
select_source_branch(special_branch_name)
@ -191,7 +191,7 @@ describe 'Merge request > User selects branches for new MR', :js do
it 'does not escape unicode in branch names' do
special_branch_name = 'ʕ•ᴥ•ʔ'
CreateBranchService.new(project, user)
.execute(special_branch_name, 'add-pdf-file')
.execute(special_branch_name, 'add-pdf-file')
visit project_new_merge_request_path(project)
select_source_branch(special_branch_name)