aboutsummaryrefslogtreecommitdiffstats
path: root/test/token_wrapper_test.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-10-05 20:43:46 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-10-05 20:43:46 +0800
commit7bcedc27b8ed4d710ffc8c4f589211106475d899 (patch)
tree6bee24fb48b5cf4681b2545264d594e20cbd414e /test/token_wrapper_test.ts
parent553cbb25f4d8b8ae43156eb21d3358d5b1350c68 (diff)
downloaddexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar.gz
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar.bz2
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar.lz
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar.xz
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.tar.zst
dexon-sol-tools-7bcedc27b8ed4d710ffc8c4f589211106475d899.zip
Update CHANGELOG
Diffstat (limited to 'test/token_wrapper_test.ts')
-rw-r--r--test/token_wrapper_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts
index 6ada6588c..eac540d03 100644
--- a/test/token_wrapper_test.ts
+++ b/test/token_wrapper_test.ts
@@ -351,7 +351,7 @@ describe('TokenWrapper', () => {
zeroEx.token.unsubscribeAll();
});
// Hack: Mocha does not allow a test to be both async and have a `done` callback
- // Since we need to await the receipt of the event in the `subscribeAsync` callback,
+ // Since we need to await the receipt of the event in the `subscribe` callback,
// we do need both. A hack is to make the top-level a sync fn w/ a done callback and then
// wrap the rest of the test in an async block
// Source: https://github.com/mochajs/mocha/issues/2407