Skip to content

Commit b1a8704

Browse files
committed
Update error messages from node PR 4592
See IntersectMBO/cardano-node#4592
1 parent 88084bd commit b1a8704

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

cardano_node_tests/tests/test_transactions.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -3020,7 +3020,10 @@ def test_missing_fee(
30203020
if "Transaction _ fee not supported in" in err_str:
30213021
pytest.xfail("See node issue #4591 - Transaction _ fee not supported")
30223022

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
30243027

30253028
@allure.link(helpers.get_vcs_link())
30263029
@pytest.mark.skipif(
@@ -3065,7 +3068,10 @@ def test_missing_ttl(
30653068
if "Transaction validity upper bound not supported" in err_str:
30663069
pytest.xfail("See node issue #4591 - Transaction validity upper bound not supported")
30673070

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
30693075

30703076
@allure.link(helpers.get_vcs_link())
30713077
def test_missing_tx_in(

0 commit comments

Comments
 (0)