Skip to content

Commit

Permalink
value is exported, fix to Value
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzo Manacorda committed Oct 13, 2016
1 parent 88c673a commit a977dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion render/detailed/summary_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func TestSummaries(t *testing.T) {
// It should summarize nodes' metrics
{
t1, t2 := mtime.Now().Add(-1*time.Minute), mtime.Now()
metric := report.MakeMetric([]report.Sample{{Timestamp: t1, value: 1}, {Timestamp: t2, value: 2}})
metric := report.MakeMetric([]report.Sample{{Timestamp: t1, Value: 1}, {Timestamp: t2, Value: 2}})
input := fixture.Report.Copy()

input.Process.Nodes[fixture.ClientProcess1NodeID].Metrics[process.CPUUsage] = metric
Expand Down

0 comments on commit a977dd9

Please sign in to comment.