Merge pull request #2944 from joostjager/increase-test-timeout

htlcswitch/test: increase test timeout for hodl invoice tests
This commit is contained in:
Joost Jager 2019-04-12 11:50:20 +02:00 committed by GitHub
commit 2b43da4220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5697,7 +5697,7 @@ func newHodlInvoiceTestCtx(t *testing.T) (*hodlInvoiceTestCtx, error) {
select {
case err := <-errChan:
t.Fatalf("no payment result expected: %v", err)
case <-time.After(time.Second):
case <-time.After(5 * time.Second):
t.Fatal("timeout")
case h := <-receiver.registry.settleChan:
if hash != h {