Merge pull request #12 from frankxyy/patch-1

Fix variable name
This commit is contained in:
Tevin 2019-03-06 11:07:32 +08:00 committed by GitHub
commit 9762d1c917
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func _benchmarkChecker(b *testing.B, c *Checker, addr string) {
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
c.CheckAddr(AddrDead, time.Second)
c.CheckAddr(addr, time.Second)
}
})
b.StopTimer()