Add forgotten await to ERC1155URIStorage beforeEach block. (#3807)

pull/3817/head
Saeed Dadkhah 2 years ago committed by GitHub
parent b2970b96e5
commit 99589794db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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');
});

Loading…
Cancel
Save