mirror of https://github.com/docker/buildx.git
Merge pull request #3293 from jsternberg/dap-adapter-test-flaky
dap: increase timeout for receiving configuration done in adapter test
This commit is contained in:
commit
3a3fc54e33
|
|
@ -59,7 +59,7 @@ func TestLaunch(t *testing.T) {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-configurationDone:
|
case <-configurationDone:
|
||||||
case <-time.After(time.Second):
|
case <-time.After(10 * time.Second):
|
||||||
assert.Fail(t, "did not receive configurationDone response")
|
assert.Fail(t, "did not receive configurationDone response")
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue