htlcswitch/link_test: double timeouts

Double the timeout to allow the htlcswitch tests to finish on slow
systems (darwin...).
This commit is contained in:
Johan T. Halseth
2020-12-04 10:50:19 +01:00
parent 548827fe89
commit 0a12592b39
2 changed files with 2 additions and 2 deletions

View File

@@ -1412,7 +1412,7 @@ func timeout(t *testing.T) func() {
done := make(chan struct{})
go func() {
select {
case <-time.After(10 * time.Second):
case <-time.After(20 * time.Second):
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
panic("test timeout")