Merge branch 'rs-fix-master' into 'master'

Fix spec/features/projects/branches_spec

See merge request !13163
This commit is contained in:
Robert Speicher 2017-07-28 17:49:52 +00:00
commit 62e9bb16dc
1 changed files with 3 additions and 3 deletions

View File

@ -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|