Remove async

feature/default_network_editable
Thomas 5 years ago
parent 94a4b4d7db
commit 5f53e4b67e
  1. 4
      test/unit/ui/app/actions.spec.js

@ -784,11 +784,11 @@ describe('Actions', () => {
signTypedMsgSpy.restore()
})
it('calls signTypedMsg in background with no error', async () => {
it('calls signTypedMsg in background with no error', () => {
const store = mockStore()
signTypedMsgSpy = sinon.stub(background, 'signTypedMessage')
store.dispatch(await actions.signTypedMsg(msgParamsV3))
store.dispatch(actions.signTypedMsg(msgParamsV3))
assert(signTypedMsgSpy.calledOnce)
})

Loading…
Cancel
Save