chore: update to go 1.20 (#5968)

Co-authored-by: Colin Adler <colin1adler@gmail.com>
This commit is contained in:
Kyle Carberry
2023-02-02 12:36:27 -06:00
committed by GitHub
parent 4df1031f8b
commit 026b1cd2a4
24 changed files with 91 additions and 93 deletions

View File

@ -30,11 +30,11 @@ func Eventually(ctx context.Context, t testing.TB, condition func(ctx context.Co
msg := "Eventually timed out"
if len(msgAndArgs) > 0 {
if m, ok := msgAndArgs[0].(string); ok {
msg = fmt.Sprintf(m, msgAndArgs[1:]...)
} else {
m, ok := msgAndArgs[0].(string)
if !ok {
panic("developer error: first argument of msgAndArgs must be a string")
}
msg = fmt.Sprintf(m, msgAndArgs[1:]...)
}
ticker := time.NewTicker(tick)