fix failed tests.

This commit is contained in:
reasno 2019-10-28 21:15:32 +08:00
parent 862ecb9e84
commit 94fc1ef929

View File

@ -46,6 +46,6 @@ class Histogram implements HistogramInterface
public function put(float $value): void
{
$this->histogram->put($value, $this->labelValues);
$this->histogram->observe($value, $this->labelValues);
}
}