diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-01-31 08:26:42 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-01-31 08:26:42 +0800 |
commit | 7cc4a8f5cebb41ee5b9a37a1732d7f2af5d16d4a (patch) | |
tree | c29207060123584f2784705e3527b962f45565de /packages/0x.js/test/token_wrapper_test.ts | |
parent | 4d0ff0dce4bdef031f19a2ec8891ae58f98616ee (diff) | |
download | dexon-0x-contracts-7cc4a8f5cebb41ee5b9a37a1732d7f2af5d16d4a.tar.gz dexon-0x-contracts-7cc4a8f5cebb41ee5b9a37a1732d7f2af5d16d4a.tar.zst dexon-0x-contracts-7cc4a8f5cebb41ee5b9a37a1732d7f2af5d16d4a.zip |
Fix lint errors
Diffstat (limited to 'packages/0x.js/test/token_wrapper_test.ts')
-rw-r--r-- | packages/0x.js/test/token_wrapper_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/test/token_wrapper_test.ts b/packages/0x.js/test/token_wrapper_test.ts index 070d6ec47..34ebe30c2 100644 --- a/packages/0x.js/test/token_wrapper_test.ts +++ b/packages/0x.js/test/token_wrapper_test.ts @@ -377,7 +377,7 @@ describe('TokenWrapper', () => { tokenAddress = token.address; }); afterEach(() => { - zeroEx.token.unsubscribeAll(); + 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 `subscribe` callback, |