diff --git a/contracts/utils/test/log_decoding.ts b/contracts/utils/test/log_decoding.ts index 16ae7a6244..13d9d14971 100644 --- a/contracts/utils/test/log_decoding.ts +++ b/contracts/utils/test/log_decoding.ts @@ -53,7 +53,7 @@ describe('TestLogDecoding', () => { // tslint:disable no-unnecessary-type-assertion expect((txReceipt.logs[0] as LogWithDecodedArgs).args).to.be.deep.equal(expectedEvent); }); - it('should not event args when no dependencies are passed into wrapper', async () => { + it('should not decode event args when no dependencies are passed into wrapper', async () => { const txReceipt = await testLogDecodingDeployedWithoutDependencies.emitEventDownstream.awaitTransactionSuccessAsync(); expect(txReceipt.logs.length).to.be.equal(1); // tslint:disable no-unnecessary-type-assertion