Correct the count

This commit is contained in:
Miek Gieben 2011-07-22 22:07:45 +02:00
parent c2a89d3184
commit 4f6b1f7ee2
1 changed files with 1 additions and 1 deletions

View File

@ -180,5 +180,5 @@ func TestZoneParsing(t *testing.T) {
t.Fail()
}
delta := time.Nanoseconds() - start
t.Logf("%d RRs parsed in %.2f s (%.2f RR/s)", z.Len(), float32(delta)/1e9, float32(z.Len())/(float32(delta)/1e9))
t.Logf("%d RRs parsed in %.2f s (%.2f RR/s)", z.Len()-1, float32(delta)/1e9, float32(z.Len()-1)/(float32(delta)/1e9))
}