File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3020,7 +3020,10 @@ def test_missing_fee(
3020
3020
if "Transaction _ fee not supported in" in err_str :
3021
3021
pytest .xfail ("See node issue #4591 - Transaction _ fee not supported" )
3022
3022
3023
- assert "fee must be specified" in err_str , err_str
3023
+ assert (
3024
+ "fee must be specified" in err_str
3025
+ or "Implicit transaction fee not supported" in err_str
3026
+ ), err_str
3024
3027
3025
3028
@allure .link (helpers .get_vcs_link ())
3026
3029
@pytest .mark .skipif (
@@ -3065,7 +3068,10 @@ def test_missing_ttl(
3065
3068
if "Transaction validity upper bound not supported" in err_str :
3066
3069
pytest .xfail ("See node issue #4591 - Transaction validity upper bound not supported" )
3067
3070
3068
- assert "TTL must be specified" in err_str , err_str
3071
+ assert (
3072
+ "TTL must be specified" in err_str
3073
+ or "Transaction validity upper bound must be specified" in err_str
3074
+ ), err_str
3069
3075
3070
3076
@allure .link (helpers .get_vcs_link ())
3071
3077
def test_missing_tx_in (
You can’t perform that action at this time.
0 commit comments