Skip to content

Commit

Permalink
fix: corrected async function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
itzmeanjan committed Apr 1, 2021
1 parent 872f7a3 commit 5a9f32d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/predicates/ERC721Predicate.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ contract('ERC721Predicate', (accounts) => {
owner.should.equal(withdrawer)
})

it('Token URI should match with transferred metadata', async function () {
it('Token URI should match with transferred metadata', async () => {
const _metaData = await dummyERC721.tokenURI(tokenId)
_metaData.should.equal(metaData)
})
Expand Down
2 changes: 1 addition & 1 deletion test/predicates/MintableERC721Predicate.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ contract('MintableERC721Predicate', (accounts) => {
owner.should.equal(withdrawer)
})

it('Token URI should match with transferred metadata', async _ => {
it('Token URI should match with transferred metadata', async () => {
const _metaData = await dummyMintableERC721.tokenURI(tokenId)
_metaData.should.equal(metaData)
})
Expand Down

0 comments on commit 5a9f32d

Please sign in to comment.