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
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26
2 changed files with 2 additions and 2 deletions

View File

@ -1140,7 +1140,7 @@ func TestChannelLinkMultiHopUnknownPaymentHash(t *testing.T) {
if !ok {
t.Fatalf("unexpected shutdown")
}
case <-time.After(5 * time.Second):
case <-time.After(10 * time.Second):
t.Fatalf("no result arrive")
}

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")