diff options
| author | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 19:59:54 -0500 |
|---|---|---|
| committer | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 19:59:54 -0500 |
| commit | 963e6366be870bc78037424a5e9d150f342dcfac (patch) | |
| tree | 9835d868780996f8e1b7371b47f3e5afa211d483 /features/steps/project/graph.rb | |
| parent | aed145a9c68f5130a8e46602c4b6f1b76c8c13bf (diff) | |
| download | gitlab-ce-963e6366be870bc78037424a5e9d150f342dcfac.tar.gz | |
Fix rubocop warnings in features
Diffstat (limited to 'features/steps/project/graph.rb')
| -rw-r--r-- | features/steps/project/graph.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/graph.rb b/features/steps/project/graph.rb index 9453d636445..4abd5288d51 100644 --- a/features/steps/project/graph.rb +++ b/features/steps/project/graph.rb @@ -32,6 +32,6 @@ class Spinach::Features::ProjectGraph < Spinach::FeatureSteps end def project - project ||= Project.find_by(name: "Shop") + @project ||= Project.find_by(name: "Shop") end end |
