Merge pull request #167 from prometheus/refactor/tests/trailing-types

Convert trailing float64s.
This commit is contained in:
juliusv 2013-04-21 12:09:02 -07:00
commit e4e6e9a6f5
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 {