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 @@ -936,7 +936,10 @@ def test_missing_fee(
936
936
if "Transaction _ fee not supported in" in err_str :
937
937
pytest .xfail ("See node issue #4591 - Transaction _ fee not supported" )
938
938
939
- assert "fee must be specified" in err_str , err_str
939
+ assert (
940
+ "fee must be specified" in err_str
941
+ or "Implicit transaction fee not supported" in err_str
942
+ ), err_str
940
943
941
944
@allure .link (helpers .get_vcs_link ())
942
945
@pytest .mark .skipif (
@@ -983,7 +986,10 @@ def test_missing_ttl(
983
986
if "Transaction validity upper bound not supported" in err_str :
984
987
pytest .xfail ("See node issue #4591 - Transaction validity upper bound not supported" )
985
988
986
- assert "TTL must be specified" in err_str , err_str
989
+ assert (
990
+ "TTL must be specified" in err_str
991
+ or "Transaction validity upper bound must be specified" in err_str
992
+ ), err_str
987
993
988
994
@allure .link (helpers .get_vcs_link ())
989
995
def test_missing_tx_in (
You can’t perform that action at this time.
0 commit comments