aboutsummaryrefslogtreecommitdiffstats
path: root/ui/test
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-04-16 00:42:20 +0800
committerDan Finlay <dan@danfinlay.com>2016-04-16 00:42:20 +0800
commit33dc68535de39166c92f80c0ffee03ca0424b34e (patch)
tree14e1d8aeb3b3401bc83767482df1c208ff4ab203 /ui/test
parentdac7406ff8dd614b7d4111f3c7fcbd8dc5dda489 (diff)
downloadtangerine-wallet-browser-33dc68535de39166c92f80c0ffee03ca0424b34e.tar.gz
tangerine-wallet-browser-33dc68535de39166c92f80c0ffee03ca0424b34e.tar.zst
tangerine-wallet-browser-33dc68535de39166c92f80c0ffee03ca0424b34e.zip
Add leading zero to account balances
Diffstat (limited to 'ui/test')
-rw-r--r--ui/test/unit/util_test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/test/unit/util_test.js b/ui/test/unit/util_test.js
index 7e34bba1c..b35d60812 100644
--- a/ui/test/unit/util_test.js
+++ b/ui/test/unit/util_test.js
@@ -71,7 +71,7 @@ describe('util', function() {
it('should return eth as string followed by ETH', function() {
var input = new ethUtil.BN(ethInWei, 10).div(new ethUtil.BN('2', 10)).toJSON()
var result = util.formatBalance(input)
- assert.equal(result, '.5000 ETH')
+ assert.equal(result, '0.5000 ETH')
})
it('should display four decimal points', function() {