Fixed inconsistency between HasIntField and IntField (#2813)

This commit is contained in:
Frederick Roth
2017-05-16 15:25:30 -07:00
committed by Daniel Nelson
parent f29cd638c9
commit ec3c27a555
14 changed files with 50 additions and 32 deletions
+1 -1
View File
@@ -37,6 +37,6 @@ func TestZookeeperGeneratesMetrics(t *testing.T) {
}
for _, metric := range intMetrics {
assert.True(t, acc.HasIntField("zookeeper", metric), metric)
assert.True(t, acc.HasInt64Field("zookeeper", metric), metric)
}
}