1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Make modification

This commit is contained in:
Kevin Serrano 2017-10-09 13:02:52 -07:00
parent c12d56063d
commit d82d9215fb
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1

View File

@ -72,7 +72,7 @@ describe('BnInput', function () {
onChange: (newBn) => { onChange: (newBn) => {
assert.equal(newBn.toString(), target.toString(), 'should tolerate increase') assert.equal(newBn.toString(), target.toString(), 'should tolerate increase')
const reInput = BnInput.prototype.downsize(newBn.toString(), 9, 9) const reInput = BnInput.prototype.downsize(newBn.toString(), 9, 9)
assert.equal(reInput.toString(), target.toString(), 'should tolerate increase') assert.equal(reInput.toString(), inputStr, 'should tolerate increase')
done() done()
}, },
} }