Skip to content

Commit

Permalink
Remove unnecessary async
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Nov 23, 2023
1 parent 17bce65 commit 879244d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/Address.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('Address', function () {
await this.other.sendTransaction({ to: this.mock, value: funds });
});

describe('with EOA recipient', async function () {
describe('with EOA recipient', function () {
it('sends 0 wei', async function () {
await expect(this.mock.$sendValue(this.recipient, 0)).to.changeEtherBalance(this.recipient.address, 0);
});
Expand Down

0 comments on commit 879244d

Please sign in to comment.