aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/unit/components/bn-as-decimal-input-test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/components/bn-as-decimal-input-test.js b/test/unit/components/bn-as-decimal-input-test.js
index 034bc3e18..f515003bb 100644
--- a/test/unit/components/bn-as-decimal-input-test.js
+++ b/test/unit/components/bn-as-decimal-input-test.js
@@ -14,7 +14,7 @@ describe('BnInput', function () {
const renderer = ReactTestUtils.createRenderer()
let valueStr = '20'
- while (valueStr.length < 20) {
+ while (valueStr.length < 15) {
valueStr += '0'
}
const value = new BN(valueStr, 10)
@@ -22,7 +22,7 @@ describe('BnInput', function () {
let inputStr = '2.3'
let targetStr = '23'
- while (targetStr.length < 19) {
+ while (targetStr.length < 14) {
targetStr += '0'
}
const target = new BN(targetStr, 10)