Skip to content

Commit

Permalink
Add forgotten await to ERC1155URIStorage beforeEach block. (OpenZeppe…
Browse files Browse the repository at this point in the history
  • Loading branch information
its-saeed authored Nov 16, 2022
1 parent b2970b9 commit 9958979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/token/ERC1155/extensions/ERC1155URIStorage.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
Expand Down

0 comments on commit 9958979

Please sign in to comment.