fix: fix some typo errors (#3988)

Co-authored-by: woody <yaodiwu618@gmail.com>
This commit is contained in:
cyberslack_lee
2026-06-23 11:08:44 +08:00
committed by GitHub
parent ab0085362c
commit 7c94b5a822
9 changed files with 28 additions and 28 deletions

View File

@@ -288,7 +288,7 @@ func awaitConvergence(t *testing.T, threshold int, maxTimeToConsistency time.Dur
select {
// Capture the overall timeout
case <-to:
t.Fatalf("timeout while waiting after %d attempts, %d/%d sucessess", attempts, successes, threshold)
t.Fatalf("timeout while waiting after %d attempts, %d/%d successes", attempts, successes, threshold)
// And the per-try delay
case <-time.After(delay):
}