Merge branch 'rs-fix-master' into 'master'
Fix spec/features/projects/branches_spec See merge request !13163
This commit is contained in:
commit
62e9bb16dc
1 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ describe 'Branches' do
|
|||
it 'sorts the branches by name' do
|
||||
visit project_branches_path(project)
|
||||
|
||||
click_button "Name" # Open sorting dropdown
|
||||
click_button "Last updated" # Open sorting dropdown
|
||||
click_link "Name"
|
||||
|
||||
sorted = repository.branches_sorted_by(:name).first(20).map do |branch|
|
||||
|
@ -41,7 +41,7 @@ describe 'Branches' do
|
|||
it 'sorts the branches by last updated' do
|
||||
visit project_branches_path(project)
|
||||
|
||||
click_button "Name" # Open sorting dropdown
|
||||
click_button "Last updated" # Open sorting dropdown
|
||||
click_link "Last updated"
|
||||
|
||||
sorted = repository.branches_sorted_by(:updated_desc).first(20).map do |branch|
|
||||
|
@ -53,7 +53,7 @@ describe 'Branches' do
|
|||
it 'sorts the branches by oldest updated' do
|
||||
visit project_branches_path(project)
|
||||
|
||||
click_button "Name" # Open sorting dropdown
|
||||
click_button "Last updated" # Open sorting dropdown
|
||||
click_link "Oldest updated"
|
||||
|
||||
sorted = repository.branches_sorted_by(:updated_asc).first(20).map do |branch|
|
||||
|
|
Loading…
Reference in a new issue