Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions cardano_node_tests/tests/issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,6 @@
fixed_in="10.15.0.1", # Fixed in release after 10.15.0.1
message="Cannot get policyid for SimpleScript reference script.",
)
cli_1347 = blockers.GH(
issue=1347,
repo="IntersectMBO/cardano-cli",
fixed_in="10.15.0.1", # Fixed in some release after 10.15.0.1
message="Compat stake reg cert accepted without deposit amount.",
)

consensus_973 = blockers.GH(
issue=973,
Expand Down
2 changes: 1 addition & 1 deletion cardano_node_tests/tests/test_addr_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def test_legacy_stake_addr_registration_rejected_in_conway(
err_str = str(exc)

if not err_str and VERSIONS.cli >= version.parse("10.14.0.0"):
issues.cli_1347.finish_test()
return

assert err_str, "Expected transaction submission to fail, but it succeeded"

Expand Down
2 changes: 1 addition & 1 deletion cardano_node_tests/tests/test_delegation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ def test_legacy_stake_delegation_rejected_in_conway(
err_str = str(exc)

if not err_str and VERSIONS.cli >= version.parse("10.14.0.0"):
issues.cli_1347.finish_test()
return

assert err_str, "Expected transaction submission to fail, but it succeeded"

Expand Down
2 changes: 1 addition & 1 deletion cardano_node_tests/tests/test_pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2685,7 +2685,7 @@ def _deregister():
request.addfinalizer(_deregister)

if not err_str and VERSIONS.cli >= version.parse("10.14.0.0"):
issues.cli_1347.finish_test()
return

assert err_str, "Expected transaction submission to fail, but it succeeded"

Expand Down
Loading