Convert trailing float64s.

This commit is contained in:
Matt T. Proud 2013-04-21 20:52:21 +02:00
parent cbcaef0018
commit 422003da8e
2 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ type (
sample struct {
time time.Time
value float64
value model.SampleValue
}
sampleGroup struct {
@ -90,7 +90,7 @@ func (s sampleGroup) Get() (key, value coding.Encoder) {
for _, value := range s.values {
series.Value = append(series.Value, &dto.SampleValueSeries_Value{
Timestamp: proto.Int64(value.time.Unix()),
Value: proto.Float64(value.value),
Value: value.value.ToDTO(),
})
}

View file

@ -26,7 +26,7 @@ func GetValueAtTimeTests(persistenceMaker func() (MetricPersistence, test.Closer
month time.Month
day int
hour int
value float64
value model.SampleValue
}
type input struct {
@ -358,7 +358,7 @@ func GetBoundaryValuesTests(persistenceMaker func() (MetricPersistence, test.Clo
month time.Month
day int
hour int
value float64
value model.SampleValue
}
type input struct {
@ -672,7 +672,7 @@ func GetRangeValuesTests(persistenceMaker func() (MetricPersistence, test.Closer
month time.Month
day int
hour int
value float64
value model.SampleValue
}
type input struct {