diff options
author | Douwe Maan <douwe@gitlab.com> | 2017-09-07 16:15:32 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2017-09-07 16:15:32 +0000 |
commit | 523a1c69ab6c51969f2613c4042d91318f841081 (patch) | |
tree | a30cd8e62725a818a9d0e4bfa6405fe194fdc3d6 /features | |
parent | ec304cb9297ae75a7f46d6945d537c5d1cbd2fdf (diff) | |
parent | cfd475a45ee2655fa0148b0b561f95b44fe8641b (diff) | |
download | gitlab-ce-523a1c69ab6c51969f2613c4042d91318f841081.tar.gz |
Merge branch '23079-remove-default-scope-in-sortable' into 'master'
Removes default scope from sortable
Closes #23079
See merge request !13558
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/project/fork.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/fork.rb b/features/steps/project/fork.rb index 513ccce2f8f..f88738b4c61 100644 --- a/features/steps/project/fork.rb +++ b/features/steps/project/fork.rb @@ -52,7 +52,7 @@ class Spinach::Features::ProjectFork < Spinach::FeatureSteps end step 'I visit the forks page of the "Shop" project' do - @project = Project.where(name: 'Shop').last + @project = Project.where(name: 'Shop').first visit project_forks_path(@project) end |