diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-02-22 10:50:04 -0600 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-02-23 09:31:57 -0600 |
commit | f72a65603db4dfdb41f327ab03892eed5dadb57e (patch) | |
tree | 28cb8134a20d4008753a163d2a41bf19c74e29ec | |
parent | 0b27d63359cdc6968cbb48b56bd168bddc09950e (diff) | |
download | gitlab-ce-f72a65603db4dfdb41f327ab03892eed5dadb57e.tar.gz |
Fix another spec
-rw-r--r-- | spec/lib/gitlab/metrics/method_call_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/metrics/method_call_spec.rb b/spec/lib/gitlab/metrics/method_call_spec.rb index 16c6de0bee6..a247f03b2da 100644 --- a/spec/lib/gitlab/metrics/method_call_spec.rb +++ b/spec/lib/gitlab/metrics/method_call_spec.rb @@ -23,7 +23,7 @@ describe Gitlab::Metrics::MethodCall do expect(metric.values[:duration]).to be_a_kind_of(Numeric) expect(metric.values[:cpu_duration]).to be_a_kind_of(Numeric) - expect(metric.values[:call_count]).to an_instance_of(Integer) + expect(metric.values[:call_count]).to be_an(Integer) expect(metric.tags).to eq({ method: 'Foo#bar' }) end |