diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-10-03 12:19:31 +0200 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-10-03 12:19:31 +0200 |
commit | 3960a5a25aa857959544d274097b4f0e38777468 (patch) | |
tree | 51069596b824e1e4bf32a58b54356715686d37f9 /features | |
parent | a3d90c5045ae322a013484165cdebcd764dc5d69 (diff) | |
download | gitlab-ce-3960a5a25aa857959544d274097b4f0e38777468.tar.gz |
Remove assignment without effect.
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/shared/paths.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index babbef33ec4..141ff13b67d 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -411,7 +411,7 @@ module SharedPaths end def project - project = Project.find_by!(name: "Shop") + Project.find_by!(name: 'Shop') end # ---------------------------------------- |