Skip to content

Commit

Permalink
fix: update error message in test js
Browse files Browse the repository at this point in the history
  • Loading branch information
albertolerda authored and jaromil committed Oct 2, 2023
1 parent df5cc31 commit 7f16abe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bindings/javascript/src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@ test("handle broken zencode", async (t) => {
try {
await zencode_exec(`sapodksapodk`);
} catch (e) {
console.log(e)
t.true(
e.logs.includes(
`Invalid Zencode line 1: 'sapodksapodk'`
`Invalid Zencode prefix 1: 'sapodksapodk'`
)
);
}
Expand Down

0 comments on commit 7f16abe

Please sign in to comment.