Browse Source

pytest: Mark test_funding_push as network-specific

It checks for both exact values, that may differ due to fees, as well as the
unit which varies from network to network.
nifty/pset-pre
Christian Decker 5 years ago
parent
commit
cbc959ef30
  1. 1
      tests/test_connection.py

1
tests/test_connection.py

@ -821,6 +821,7 @@ def test_funding_toolarge(node_factory, bitcoind):
l1.rpc.fundchannel(l2.info['id'], amount)
@unittest.skipIf(TEST_NETWORK != 'regtest', "check_coin_moves is network-specific")
def test_funding_push(node_factory, bitcoind):
""" Try to push peer some sats """
# We track balances, to verify that accounting is ok.

Loading…
Cancel
Save