minRelayTxFee was bumped in #6793 but the rpc test were not updated.
Related to #6827. (@laanwj should decide which one to merge first)
27 | @@ -28,7 +28,10 @@ def setup_network(self, split=False): 28 | 29 | def run_test(self): 30 | print "Mining blocks..." 31 | - feeTolerance = Decimal(0.00000002) #if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests 32 | + 33 | + # if the fee's positive delta is higher than this value tests will fail, neg. delta always fail the tests 34 | + # = 2 bytes * minRelayTxFeePerByte 35 | + feeTolerance = 2 * Decimal('0.00005000')/1000
Maybe you could use the client's "relayfee" provided via "getnetworkinfo", so the test depends less on magic numbers?