test a longer input and its k

master
bel 2023-03-26 09:23:20 -06:00
parent 8fd0067ad1
commit ad967d5047
1 changed files with 7 additions and 1 deletions

View File

@ -169,7 +169,13 @@ func TestV01Feedback(t *testing.T) {
}
resp.Body.Close()
}
time.Sleep(time.Second * 3)
time.Sleep(time.Millisecond * 2500)
resp, err := http.Get("http://localhost:27071/?say=URL%20encoding%2C%20also%20known%20as%20percent%20encoding%2C%20is%20a%20way%20to%20encode%20or%20escape%20reserved%2C%20unprintable%2C%20or%20non-ASCII%20characters%20in%20URLs%20to%20a%20safe%20and%20secure%20format")
if err != nil {
t.Fatal(err)
}
resp.Body.Close()
time.Sleep(time.Millisecond * 8500)
})
}