Skip to content

Commit 3a3fc54

Browse files
authored
Merge pull request #3293 from jsternberg/dap-adapter-test-flaky
dap: increase timeout for receiving configuration done in adapter test
2 parents a007368 + f03ed8c commit 3a3fc54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dap/adapter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func TestLaunch(t *testing.T) {
5959

6060
select {
6161
case <-configurationDone:
62-
case <-time.After(time.Second):
62+
case <-time.After(10 * time.Second):
6363
assert.Fail(t, "did not receive configurationDone response")
6464
}
6565
return nil

0 commit comments

Comments
 (0)