diff options
Diffstat (limited to 'test/proxy_wrapper_test.ts')
-rw-r--r-- | test/proxy_wrapper_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/proxy_wrapper_test.ts b/test/proxy_wrapper_test.ts index 42baed2b1..8faef0b30 100644 --- a/test/proxy_wrapper_test.ts +++ b/test/proxy_wrapper_test.ts @@ -2,12 +2,12 @@ import * as chai from 'chai'; import {chaiSetup} from './utils/chai_setup'; import {web3Factory} from './utils/web3_factory'; import {ZeroEx} from '../src'; -import {ProxyWrapper} from '../src/contract_wrappers/proxy_wrapper'; +import {TokenTransferProxyWrapper} from '../src/contract_wrappers/token_transfer_proxy_wrapper'; chaiSetup.configure(); const expect = chai.expect; -describe('ProxyWrapper', () => { +describe('TokenTransferProxyWrapper', () => { let zeroEx: ZeroEx; before(async () => { const web3 = web3Factory.create(); |