diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-26 00:07:40 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-10-03 09:18:46 +0200 |
commit | 2e9f5de86896e53e9cf34aef52bbc2ad08019a21 (patch) | |
tree | 48c469b4e8a9f4596f978a2602e4d3b5cfbece86 /features | |
parent | a3d90c5045ae322a013484165cdebcd764dc5d69 (diff) | |
download | gitlab-ce-2e9f5de86896e53e9cf34aef52bbc2ad08019a21.tar.gz |
Add parenthesis to function def with arguments.
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/group.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/group.rb b/features/steps/group.rb index da0cf7bbd45..616a297db99 100644 --- a/features/steps/group.rb +++ b/features/steps/group.rb @@ -201,7 +201,7 @@ class Spinach::Features::Groups < Spinach::FeatureSteps protected - def assigned_to_me key + def assigned_to_me(key) project.send(key).where(assignee_id: current_user.id) end |