File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,8 @@ def test_tx_invalid_json_metadata(
128128 )
129129 str_err = str (excinfo .value )
130130 assert (
131- "Failed reading: satisfy" in str_err # cardano-node < 8.7.0
131+ "expecting record key literal" in str_err # cardano-cli >= 10.11.1.1
132+ or "Failed reading: satisfy" in str_err # cardano-node < 8.7.0
132133 or "JSON parse error:" in str_err
133134 ), str_err
134135
@@ -162,7 +163,8 @@ def test_build_tx_invalid_json_metadata(
162163 )
163164 str_err = str (excinfo .value )
164165 assert (
165- "Failed reading: satisfy" in str_err # cardano-node < 8.7.0
166+ "expecting record key literal" in str_err # cardano-cli >= 10.11.1.1
167+ or "Failed reading: satisfy" in str_err # cardano-node < 8.7.0
166168 or "JSON parse error:" in str_err
167169 ), str_err
168170
You can’t perform that action at this time.
0 commit comments