We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c5dfb commit 9436034Copy full SHA for 9436034
test/utils/Nonces.test.js
@@ -19,7 +19,7 @@ contract('Nonces', function (accounts) {
19
expect(await this.nonces.nonces(sender)).to.be.bignumber.equal('0');
20
21
const { receipt } = await this.nonces.$_useNonce(sender);
22
- expectEvent(receipt, 'return$_useNonce', { current: '0' });
+ expectEvent(receipt, 'return$_useNonce', ['0']);
23
24
expect(await this.nonces.nonces(sender)).to.be.bignumber.equal('1');
25
});
0 commit comments