mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
Merge bitcoin/bitcoin#28088: test: Disable known broken USDT test
faf8be7c32
test: Disable known broken USDT test (MarcoFalke)
Pull request description:
The failure is known and running into more failures doesn't help anyone. Not disabling the test would be a waste of CPU and developer time.
https://github.com/bitcoin/bitcoin/issues/27380
Top commit has no ACKs.
Tree-SHA512: d0469153b00d6b30e10a21bcd52d508fcf9f796ff2468f59aff75020a82c718bcae85caf4b58397dea6fd9e210b501353fd51567f979c6b57d3b1bb23d318216
This commit is contained in:
commit
d09c8bc730
1 changed files with 4 additions and 1 deletions
|
@ -307,7 +307,10 @@ class MempoolTracepointTest(BitcoinTestFramework):
|
|||
self.log.info("Ensuring mempool:rejected event was handled successfully...")
|
||||
assert_equal(EXPECTED_REJECTED_EVENTS, handled_rejected_events)
|
||||
assert_equal(bytes(event.hash)[::-1].hex(), tx["tx"].hash)
|
||||
assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
|
||||
# The next test is already known to fail, so disable it to avoid
|
||||
# wasting CPU time and developer time. See
|
||||
# https://github.com/bitcoin/bitcoin/issues/27380
|
||||
#assert_equal(event.reason.decode("UTF-8"), "min relay fee not met")
|
||||
|
||||
bpf.cleanup()
|
||||
self.generate(self.wallet, 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue