Commit 8d12a09459302f0e1546fdec7e09d5f22635f907
1 parent
13629abb
Exists in
colab
and in
4 other branches
Fixed wrong code and granularity for Flog metric factory
Signed-off-by: Heitor Reis Ribeiro <marcheing@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
spec/factories/metrics.rb
... | ... | @@ -23,8 +23,8 @@ FactoryGirl.define do |
23 | 23 | |
24 | 24 | factory :pain, class: KalibroClient::Entities::Miscellaneous::NativeMetric do |
25 | 25 | name "Code Pain" |
26 | - code "pain" | |
27 | - scope "CLASS" | |
26 | + code "flog" | |
27 | + scope "METHOD" | |
28 | 28 | description nil |
29 | 29 | languages { [:ruby] } |
30 | 30 | metric_collector_name "MetricFu" | ... | ... |