diff options
author | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
---|---|---|
committer | Frances Pangilinan <frankie.diamond@gmail.com> | 2016-12-21 05:49:22 +0800 |
commit | 4910e2f9bdf1305469edd9c55c59fb90d0e5267d (patch) | |
tree | 81309b12791e0d505b914544ea78d31f5509c50b /test | |
parent | 6ce0bc4b11ccb7ffae4f58980db0301dc418c9c0 (diff) | |
download | tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.gz tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.tar.zst tangerine-wallet-browser-4910e2f9bdf1305469edd9c55c59fb90d0e5267d.zip |
remove network Id 2 from explorer link and Add network Id 3
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/explorer-link-test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/explorer-link-test.js b/test/unit/explorer-link-test.js index 961b400fd..8aa58bff9 100644 --- a/test/unit/explorer-link-test.js +++ b/test/unit/explorer-link-test.js @@ -4,7 +4,7 @@ var linkGen = require('../../ui/lib/explorer-link') describe('explorer-link', function() { it('adds testnet prefix to morden test network', function() { - var result = linkGen('hash', '2') + var result = linkGen('hash', '3') assert.notEqual(result.indexOf('testnet'), -1, 'testnet injected') }) |