From 8961b476efc8448ac505d12250091c7de61fb985 Mon Sep 17 00:00:00 2001 From: Greg Hysen Date: Fri, 26 Jul 2019 20:51:40 +0200 Subject: [PATCH] fixed typo in a test --- contracts/utils/test/log_decoding.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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