diff options
author | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-06-09 12:43:12 +0200 |
---|---|---|
committer | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-06-09 22:47:01 +0200 |
commit | 0e7e7c2f2bd0e9c913cda438826a60e761130271 (patch) | |
tree | 0ba18ecb29cabc8cd80c9961daf20414fe368b71 /spec/support/prometheus | |
parent | f78fd3de5d55830c84f25cfd50d399e7ddaddf30 (diff) | |
download | gitlab-ce-0e7e7c2f2bd0e9c913cda438826a60e761130271.tar.gz |
Test Additional metrics parser and fix query checking tests
Diffstat (limited to 'spec/support/prometheus')
-rw-r--r-- | spec/support/prometheus/metric_builders.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/prometheus/metric_builders.rb b/spec/support/prometheus/metric_builders.rb index 18378ec0145..e4b55c22acd 100644 --- a/spec/support/prometheus/metric_builders.rb +++ b/spec/support/prometheus/metric_builders.rb @@ -21,7 +21,7 @@ module Prometheus end def simple_metric_group(name: 'name', metrics: simple_metrics) - Gitlab::Prometheus::MetricGroup.new(name: name, priority: 1, metrics: metrics) + Gitlab::Prometheus::MetricGroup.new( name, 1, metrics) end end end |