fix linting

pull/5778/head
yann300 1 week ago committed by Aniket
parent 434553adce
commit b8e300b4fc
  1. 20
      libs/remix-debug/test/decoder/stateTests/revert-state-sub-call.ts

@ -106,18 +106,18 @@ function testRevertStateSubCall (st, privateKey, contractAddress, output, compil
// in the other sub call, the value is reverted // in the other sub call, the value is reverted
st.equal(result['p'].value, '0') st.equal(result['p'].value, '0')
stateDecoder.decodeState(stateVars, storageViewerOtherContract3).then((result) => { stateDecoder.decodeState(stateVars, storageViewerOtherContract3).then((result) => {
// and reset back to 234 // and reset back to 234
st.equal(result['p'].value, '234') st.equal(result['p'].value, '234')
cb() cb()
}, (reason) => { }, (reason) => {
console.log('fail') console.log('fail')
st.end(reason) st.end(reason)
})
}) })
}, (reason) => {
console.log('fail')
st.end(reason)
}) })
}, (reason) => {
console.log('fail')
st.end(reason)
})
}) })
}, (reason) => { }, (reason) => {
console.log('fail') console.log('fail')

Loading…
Cancel
Save