Remove bad test

No one knows what the compact fee rules are...
This commit is contained in:
Neil Booth 2018-08-16 22:35:09 +09:00
parent ba5d18d9d5
commit b1eec85be8

View File

@ -315,7 +315,6 @@ async def test_compact_fee_histogram():
assert len(histogram) > 0
rates, sizes = zip(*histogram)
assert all(rates[n] < rates[n - 1] for n in range(1, len(rates)))
assert all(size > bin_size * 0.95 for size in sizes)
@pytest.mark.asyncio