diff options
Diffstat (limited to 'features')
| -rw-r--r-- | features/steps/shared/paths.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index e1e1a7181da..fc23a798c59 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -47,7 +47,11 @@ module SharedPaths end Given 'I visit project commits page' do - visit project_commits_path(@project, @project.root_ref) + visit project_commits_path(@project, @project.root_ref, {limit: 5}) + end + + Given 'I visit project commits page for stable branch' do + visit project_commits_path(@project, 'stable', {limit: 5}) end Given 'I visit project source page' do |
