We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5184804 commit afbd077Copy full SHA for afbd077
packages/vm/tests/api/runTx.spec.ts
@@ -32,7 +32,7 @@ tape('runTx', (t) => {
32
t.test('should fail to run without signature', async (st) => {
33
const tx = getTransaction(false)
34
shouldFail(st, suite.runTx({ tx }), (e: Error) =>
35
- st.ok(e.message.includes('Invalid Signature'), 'should fail with appropriate error')
+ st.ok(e.message.includes('not signed'), 'should fail with appropriate error')
36
)
37
st.end()
38
})
0 commit comments