Modfiy test to ether standards.

This commit is contained in:
Kevin Serrano 2017-05-24 10:51:44 -07:00
parent 10ca3b6467
commit 5e19a4a833
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
1 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ describe('BnInput', function () {
const renderer = ReactTestUtils.createRenderer()
let valueStr = '20'
while (valueStr.length < 15) {
while (valueStr.length < 20) {
valueStr += '0'
}
const value = new BN(valueStr, 10)
@ -21,13 +21,13 @@ describe('BnInput', function () {
let inputStr = '2.3'
let targetStr = '23'
while (targetStr.length < 14) {
while (targetStr.length < 19) {
targetStr += '0'
}
const target = new BN(targetStr, 10)
const precision = 13 // ether precision
const scale = 13
const precision = 18 // ether precision
const scale = 18
const props = {
value,