diff options
author | Pawel Chojnacki <pawel@chojnacki.ws> | 2018-01-04 17:11:39 +0100 |
---|---|---|
committer | Pawel Chojnacki <pawel@chojnacki.ws> | 2018-01-04 17:11:39 +0100 |
commit | 57c1f7cae09fe60a4be8d99b64833779476f402d (patch) | |
tree | bdf2ac73f3df83f06e96ec54d5c60a5797959fbd /spec/lib | |
parent | 09473b192c70ada66148dace8c6196ccabfa1dd9 (diff) | |
download | gitlab-ce-57c1f7cae09fe60a4be8d99b64833779476f402d.tar.gz |
Fix rubocop warnings
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/gitlab/prometheus/queries/deployment_query_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/prometheus/queries/deployment_query_spec.rb b/spec/lib/gitlab/prometheus/queries/deployment_query_spec.rb index d166327b6d3..84dc31d9732 100644 --- a/spec/lib/gitlab/prometheus/queries/deployment_query_spec.rb +++ b/spec/lib/gitlab/prometheus/queries/deployment_query_spec.rb @@ -32,6 +32,6 @@ describe Gitlab::Prometheus::Queries::DeploymentQuery do time: stop_time) expect(subject.query(environment.id, deployment.id)).to eq(memory_values: nil, memory_before: nil, memory_after: nil, - cpu_values: nil, cpu_before: nil, cpu_after: nil) + cpu_values: nil, cpu_before: nil, cpu_after: nil) end end |