fixed typo in a test

This commit is contained in:
Greg Hysen 2019-07-26 20:51:40 +02:00
parent 58e08335b5
commit 8961b476ef

View File

@ -53,7 +53,7 @@ describe('TestLogDecoding', () => {
// tslint:disable no-unnecessary-type-assertion
expect((txReceipt.logs[0] as LogWithDecodedArgs<DecodedLogArgs>).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