Skip to content
Snippets Groups Projects
Commit 0fb4239a authored by Winnie Hellmann's avatar Winnie Hellmann
Browse files

Fix indentation in user_selects_branches_for_new_mr_spec.rb

parent c909a392
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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)
Loading
Loading
@@ -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)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment