diff options
author | Tomasz Maczukin <tomasz@maczukin.pl> | 2016-08-31 19:38:01 +0200 |
---|---|---|
committer | Tomasz Maczukin <tomasz@maczukin.pl> | 2016-09-01 14:00:47 +0200 |
commit | 65274b1db697c329c1e106c170a050599d65de72 (patch) | |
tree | 043ce829b58fa1c36436e362782267abba3bebaa | |
parent | c8861da76772d781f677a76506f590edc23ba251 (diff) | |
download | gitlab-ce-65274b1db697c329c1e106c170a050599d65de72.tar.gz |
Fix rubocop offences
-rw-r--r-- | spec/features/projects/builds_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/projects/builds_spec.rb b/spec/features/projects/builds_spec.rb index 9030ce9dc67..d5d571e49bc 100644 --- a/spec/features/projects/builds_spec.rb +++ b/spec/features/projects/builds_spec.rb @@ -286,8 +286,8 @@ describe "Builds" do end context 'storage form' do - let (:existing_file) { Tempfile.new('existing-trace-file').path } - let (:non_existing_file) do + let(:existing_file) { Tempfile.new('existing-trace-file').path } + let(:non_existing_file) do file = Tempfile.new('non-existing-trace-file') path = file.path file.unlink |