diff options
author | Tomasz Maczukin <tomasz@maczukin.pl> | 2017-03-06 11:51:09 +0100 |
---|---|---|
committer | Tomasz Maczukin <tomasz@maczukin.pl> | 2017-03-06 11:51:09 +0100 |
commit | 440ef7802d908ab06f60fde2de0b38b139ae5a6c (patch) | |
tree | f63224c96dad936506e019e7d3bd1d60399ff772 | |
parent | 5c1aa5fb65ec7474956e6972e40b04b3a967c338 (diff) | |
download | gitlab-ce-440ef7802d908ab06f60fde2de0b38b139ae5a6c.tar.gz |
Fix rubocop offenses
-rw-r--r-- | spec/lib/gitlab/ci/build/image_spec.rb | 2 | ||||
-rw-r--r-- | spec/lib/gitlab/ci/build/step_spec.rb | 2 | ||||
-rw-r--r-- | spec/requests/api/runner_spec.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/gitlab/ci/build/image_spec.rb b/spec/lib/gitlab/ci/build/image_spec.rb index c561e4f40e8..0816f53c604 100644 --- a/spec/lib/gitlab/ci/build/image_spec.rb +++ b/spec/lib/gitlab/ci/build/image_spec.rb @@ -49,4 +49,4 @@ describe Gitlab::Ci::Build::Image do it { is_expected.to be_empty } end end -end
\ No newline at end of file +end diff --git a/spec/lib/gitlab/ci/build/step_spec.rb b/spec/lib/gitlab/ci/build/step_spec.rb index 630d7ff6c66..8c9aa5ec988 100644 --- a/spec/lib/gitlab/ci/build/step_spec.rb +++ b/spec/lib/gitlab/ci/build/step_spec.rb @@ -30,4 +30,4 @@ describe Gitlab::Ci::Build::Step do it { expect(subject.allow_failure).to be_truthy } end end -end
\ No newline at end of file +end diff --git a/spec/requests/api/runner_spec.rb b/spec/requests/api/runner_spec.rb index f0b6550e48e..9086094d121 100644 --- a/spec/requests/api/runner_spec.rb +++ b/spec/requests/api/runner_spec.rb @@ -288,7 +288,7 @@ describe API::Runner do 'ref' => job.ref, 'sha' => job.sha, 'before_sha' => job.before_sha, - 'ref_type' => 'branch'} + 'ref_type' => 'branch' } end let(:expected_steps) do [{ 'name' => 'script', |