minor change: more accurate variable name (#8449)

pull/8458/head
Prasanna Gautam 9 years ago committed by Torkel Ödegaard
parent 12c8bf9b18
commit 6541ffe045
  1. 4
      pkg/tsdb/time_range_test.go

@ -52,8 +52,8 @@ func TestTimeRange(t *testing.T) {
})
Convey("now-10m ", func() {
fiveMinAgo, _ := time.ParseDuration("-10m")
expected := now.Add(fiveMinAgo)
tenMinAgo, _ := time.ParseDuration("-10m")
expected := now.Add(tenMinAgo)
res, err := tr.ParseTo()
So(err, ShouldBeNil)
So(res.Unix(), ShouldEqual, expected.Unix())

Loading…
Cancel
Save