ci: Upgrade to Go 1.15 (#3642)

* ci: Try Go 1.15 RC1 out of curiosity

* Go 1.15 was released; let's try it

* Update to latest quic-go

* Attempt at fixing broken test

Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
This commit is contained in:
Francis Lavoie
2020-08-20 16:04:10 -04:00
committed by GitHub
parent c94f5bb7dd
commit 0279a57ac4
5 changed files with 35 additions and 16 deletions

View File

@ -249,7 +249,7 @@ func DisabledTest(t *testing.T) {
log.Println("test:", "post data (more than 60KB)")
data := ""
for i := 0x00; i < 0xff; i++ {
v0 := strings.Repeat(string(i), 256)
v0 := strings.Repeat(fmt.Sprint(i), 256)
h := md5.New()
_, _ = io.WriteString(h, v0)
k0 := fmt.Sprintf("%x", h.Sum(nil))
@ -266,7 +266,7 @@ func DisabledTest(t *testing.T) {
log.Println("test:", "post forms (256 keys, more than 1MB)")
p1 := make(map[string]string, 1)
for i := 0x00; i < 0xff; i++ {
v0 := strings.Repeat(string(i), 4096)
v0 := strings.Repeat(fmt.Sprint(i), 4096)
h := md5.New()
_, _ = io.WriteString(h, v0)
k0 := fmt.Sprintf("%x", h.Sum(nil))