Fix a test?

This commit is contained in:
Jeffrey Picard 2022-01-21 22:33:05 +00:00 committed by Jack Robison
parent 31312af517
commit a319595f37
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -259,8 +259,12 @@ class BasicTransactionTests(IntegrationTestCase):
async def broadcast(tx):
try:
return await real_broadcast(tx)
except lbry.wallet.rpc.jsonrpc.RPCError:
pass
except lbry.wallet.rpc.jsonrpc.RPCError as err:
# this is expected in tests where we try to double spend.
if 'the transaction was rejected by network rules.' in str(err):
pass
else:
raise err
finally:
e.set()