1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-11-06 08:59:18 +02:00

typo: correct var name (#2496)

This commit is contained in:
yeqown
2022-11-09 17:37:32 +08:00
committed by GitHub
parent 383f28faeb
commit 275f815e40

View File

@@ -70,7 +70,7 @@ func TestWrr3(t *testing.T) {
t.Errorf("count1(%v) >= int64(4500),", count1)
}
if count2 <= int64(1500) {
t.Errorf("count2(%v) <= int64(1500)", count1)
t.Errorf("count2(%v) <= int64(1500)", count2)
}
if count2 >= int64(4500) {
t.Errorf("count2(%v) >= int64(4500),", count2)