Skip to content

Commit

Permalink
refactor(contract tests): remove extra backend option
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Apr 28, 2021
1 parent dfadac8 commit 184566f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/contract.js
Expand Up @@ -518,7 +518,7 @@ describe('Contract', function () {
isString.should.be.equal(true)
})
it('decode call result', async () => {
return contract.contractDecodeCallResultAPI(identityContract, 'main', encodedNumberSix, 'ok', { backend: 'fate' }).should.eventually.become(6)
return contract.contractDecodeCallResultAPI(identityContract, 'main', encodedNumberSix, 'ok').should.eventually.become(6)
})
it('Decode call-data using source', async () => {
const decodedCallData = await contract.contractDecodeCallDataBySourceAPI(identityContract, 'init', callData)
Expand Down

0 comments on commit 184566f

Please sign in to comment.