fix the time precision in the engine test

pull/269/head
John Shahid 2014-02-18 15:39:20 -05:00
parent 8eb8ec9034
commit 11708cad64
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ func (self *EngineSuite) runQuery(query string, c *C, expectedSeries string) {
c.Assert(err, IsNil)
actual := []*protocol.Series{}
for _, s := range result.Members {
dataStoreS, err := ConvertToDataStoreSeries(s, MillisecondPrecision)
dataStoreS, err := ConvertToDataStoreSeries(s, SecondPrecision)
c.Assert(err, IsNil)
actual = append(actual, dataStoreS)
}