Remove async from describe blocks and add missing await in tests (#4942)

Co-authored-by: ernestognw <ernestognw@gmail.com>
Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
This commit is contained in:
Franco Victorio
2024-03-14 17:35:08 +01:00
committed by GitHub
parent 33ea1111b0
commit c03952acbe
13 changed files with 64 additions and 59 deletions

View File

@ -173,7 +173,7 @@ function shouldBehaveLikeERC1155() {
});
}
describe('when called by the holder', async function () {
describe('when called by the holder', function () {
beforeEach(async function () {
this.args = {
operator: this.holder,
@ -490,7 +490,7 @@ function shouldBehaveLikeERC1155() {
});
}
describe('when called by the holder', async function () {
describe('when called by the holder', function () {
beforeEach(async function () {
this.args = {
operator: this.holder,