diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-03 12:52:04 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-03 12:52:04 +0200 |
commit | 77979280e0f6f8c252fe1c0b96d4fc18071a93e4 (patch) | |
tree | a25289db943b9328e67fab2ad9b696e061aebda1 /features | |
parent | 0676f1da7e1787594ccb5d839619a40ff134596f (diff) | |
parent | 3960a5a25aa857959544d274097b4f0e38777468 (diff) | |
download | gitlab-ce-77979280e0f6f8c252fe1c0b96d4fc18071a93e4.tar.gz |
Merge pull request #7947 from cirosantilli/rm-assign-without-effect
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 # ---------------------------------------- |