1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

fix assert

This commit is contained in:
arsenyjin 2020-06-11 10:14:50 +02:00
parent 435d0fd19c
commit ad3d42f7b1

View File

@ -41,7 +41,7 @@ describe('DataTokens', () => {
const tokenAddress = await datatoken.create(blob, minter)
await datatoken.mint(tokenAddress, minter, tokenAmount)
let balance = await datatoken.balance(tokenAddress, minter)
// assert(balance === tokenAmount)
assert(balance.toString() === tokenAmount.toString())
})
})
})