diff options
| author | Russell Yanofsky <[email protected]> | 2017-02-06 18:29:55 -0500 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2017-03-21 05:46:55 -0500 |
| commit | 1dfd64fadc09ab065cbd8b8c8e67910a999ba039 (patch) | |
| tree | c6a1d921147544fdc55b7ff2449b94d13a0a412d | |
| parent | [qa] Get rid of nondeterminism in bumpfee.py (diff) | |
| download | discoin-1dfd64fadc09ab065cbd8b8c8e67910a999ba039.tar.xz discoin-1dfd64fadc09ab065cbd8b8c8e67910a999ba039.zip | |
[qa] Make bumpfee.py test function order consistent
Run bumpfee tests in top-down order, now that the test fragility is fixed, and
they can actually run in order.
| -rwxr-xr-x | test/functional/bumpfee.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/bumpfee.py b/test/functional/bumpfee.py index dfdee0d60..9904c9aed 100755 --- a/test/functional/bumpfee.py +++ b/test/functional/bumpfee.py @@ -57,13 +57,13 @@ class BumpFeeTest(BitcoinTestFramework): self.log.info("Running tests") dest_address = peer_node.getnewaddress() - test_small_output_fails(rbf_node, dest_address) - test_dust_to_fee(rbf_node, dest_address) test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address) test_segwit_bumpfee_succeeds(rbf_node, dest_address) test_nonrbf_bumpfee_fails(peer_node, dest_address) test_notmine_bumpfee_fails(rbf_node, peer_node, dest_address) test_bumpfee_with_descendant_fails(rbf_node, rbf_node_address, dest_address) + test_small_output_fails(rbf_node, dest_address) + test_dust_to_fee(rbf_node, dest_address) test_settxfee(rbf_node, dest_address) test_rebumping(rbf_node, dest_address) test_rebumping_not_replaceable(rbf_node, dest_address) |