minor change: more accurate variable name (#8449)

This commit is contained in:
Prasanna Gautam 2017-05-23 23:38:13 -07:00 committed by Torkel Ödegaard
parent 12c8bf9b18
commit 6541ffe045

View File

@ -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())