fast latency calculation

pull/135/head
hunterlong 2019-01-29 11:14:55 -08:00
parent 61ed0aeb11
commit a6f4dfdc02
1 changed files with 1 additions and 2 deletions

View File

@ -170,8 +170,7 @@ func TestServiceTotalHits(t *testing.T) {
func TestServiceSum(t *testing.T) { func TestServiceSum(t *testing.T) {
service := SelectService(5) service := SelectService(5)
sum, err := service.Sum() sum := service.Sum()
assert.Nil(t, err)
assert.NotZero(t, sum) assert.NotZero(t, sum)
} }