aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-03-28 02:01:10 +0800
committerGitHub <noreply@github.com>2017-03-28 02:01:10 +0800
commit4b9f1c0e0cb31824a430547c1354331f946386c1 (patch)
tree21fc7776c16170bfde15b03a3afa0539dbe4fd9d /test
parentbd4a68531bc915e70964e28002c3a59d85853dfa (diff)
downloadtangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar.gz
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar.bz2
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar.lz
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar.xz
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.tar.zst
tangerine-wallet-browser-4b9f1c0e0cb31824a430547c1354331f946386c1.zip
tests - fix ropsten link check
Diffstat (limited to 'test')
-rw-r--r--test/unit/account-link-test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/account-link-test.js b/test/unit/account-link-test.js
index 4ea12e002..5be3a072e 100644
--- a/test/unit/account-link-test.js
+++ b/test/unit/account-link-test.js
@@ -5,13 +5,13 @@ describe('account-link', function() {
it('adds morden prefix to morden test network', function() {
var result = linkGen('account', '2')
- assert.notEqual(result.indexOf('morden'), -1, 'testnet included')
+ assert.notEqual(result.indexOf('morden'), -1, 'morden included')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})
it('adds testnet prefix to ropsten test network', function() {
var result = linkGen('account', '3')
- assert.notEqual(result.indexOf('testnet'), -1, 'testnet included')
+ assert.notEqual(result.indexOf('ropsten'), -1, 'ropsten included')
assert.notEqual(result.indexOf('account'), -1, 'account included')
})