pytest: extend timeout for test_payment_duplicate_uncommitted

We've been seeing some Travis timeouts under VALGRIND, with the
10 second timeout here: use TIMEOUT as per standard.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2020-05-11 09:51:42 +09:30 committed by Christian Decker
parent 0bf93137f6
commit 1fb505d118

View File

@ -448,8 +448,8 @@ def test_payment_duplicate_uncommitted(node_factory, executor):
l1.rpc.dev_reenable_commit(l2.info['id'])
# These should succeed.
fut.result(10)
fut2.result(10)
fut.result(TIMEOUT)
fut2.result(TIMEOUT)
@unittest.skipIf(not DEVELOPER, "Too slow without --dev-fast-gossip")