func wantGEqXGotY(x, y int) string {
    buf := make([]byte, 0, 20)
    buf = append(buf, "want>="...)
    buf = strconv.AppendInt(buf, int64(x), 10)
    buf = append(buf, " got="...)