From 99589794db43c8b285f5b3464d2e0864caab8199 Mon Sep 17 00:00:00 2001 From: Saeed Dadkhah Date: Wed, 16 Nov 2022 17:45:58 +0330 Subject: [PATCH] Add forgotten await to ERC1155URIStorage beforeEach block. (#3807) --- test/token/ERC1155/extensions/ERC1155URIStorage.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/token/ERC1155/extensions/ERC1155URIStorage.test.js b/test/token/ERC1155/extensions/ERC1155URIStorage.test.js index 7ba7e5662..8f20a4ced 100644 --- a/test/token/ERC1155/extensions/ERC1155URIStorage.test.js +++ b/test/token/ERC1155/extensions/ERC1155URIStorage.test.js @@ -17,7 +17,7 @@ contract(['ERC1155URIStorage'], function (accounts) { describe('with base uri set', function () { beforeEach(async function () { this.token = await ERC1155URIStorageMock.new(erc1155Uri); - this.token.setBaseURI(baseUri); + await this.token.setBaseURI(baseUri); await this.token.mint(holder, tokenId, amount, '0x'); });