Skip to content
Merged
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: 3 additions & 3 deletions cardano_node_tests/tests/tests_plutus_v3/test_mint_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ def run_scenario(
)
except clusterlib.CLIError as excp:
str_excp = str(excp)
if (
not is_prot_version_ok
and "not available in language PlutusV3 at and protocol version" in str_excp
if not is_prot_version_ok and (
"not available in language PlutusV3 at and protocol version" in str_excp
or "Script evaluation error" in str_excp
):
return
if (not is_cost_model_ok or outcome == Outcomes.OVERSPEND) and (
Expand Down
Loading