aboutsummaryrefslogtreecommitdiffstats
path: root/test/token_registry_wrapper_test.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-08-24 16:05:53 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-08-24 16:05:53 +0800
commit933242bd9d83ccbf92ce29aa2b4606336e64eed7 (patch)
treeda7ace561f495b033dc5f977a2bde7de6afdb827 /test/token_registry_wrapper_test.ts
parent5dce4c3b3b655c190100b480ef50a423f3344ee6 (diff)
downloaddexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar.gz
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar.bz2
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar.lz
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar.xz
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.tar.zst
dexon-0x-contracts-933242bd9d83ccbf92ce29aa2b4606336e64eed7.zip
Change the unregistered token in tests
Diffstat (limited to 'test/token_registry_wrapper_test.ts')
-rw-r--r--test/token_registry_wrapper_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/token_registry_wrapper_test.ts b/test/token_registry_wrapper_test.ts
index 18f2f2541..e1702cd45 100644
--- a/test/token_registry_wrapper_test.ts
+++ b/test/token_registry_wrapper_test.ts
@@ -24,8 +24,8 @@ describe('TokenRegistryWrapper', () => {
const tokenByName: {[symbol: string]: Token} = {};
const registeredSymbol = 'ZRX';
const registeredName = '0x Protocol Token';
- const unregisteredSymbol = 'FUCK';
- const unregisteredName = 'FUCKtoken';
+ const unregisteredSymbol = 'MAL';
+ const unregisteredName = 'Malicious Token';
before(async () => {
const web3 = web3Factory.create();
zeroEx = new ZeroEx(web3.currentProvider);