mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Reduce TestClientWithRequestTimeout flakiness
The test sometimes failed because no error was returned: === Failed === FAIL: pkg/plugins TestClientWithRequestTimeout (0.00s) client_test.go:254: assertion failed: expected an error, got nil: expected error Possibly caused by a race condition, as the sleep was just 1 ms longer than the timeout; this patch is increasing the sleep in the response to try to reduce flakiness. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
d12fc17073
commit
00a4f67ddf
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ func TestClientWithRequestTimeout(t *testing.T) {
|
||||||
|
|
||||||
timeout := 1 * time.Millisecond
|
timeout := 1 * time.Millisecond
|
||||||
testHandler := func(w http.ResponseWriter, r *http.Request) {
|
testHandler := func(w http.ResponseWriter, r *http.Request) {
|
||||||
time.Sleep(timeout + 1*time.Millisecond)
|
time.Sleep(timeout + 10*time.Millisecond)
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue