Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmorgan committed Aug 10, 2021
1 parent cac8912 commit 95a0073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/KnownOriginDigitalAssetV3.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1364,10 +1364,10 @@ contract('KnownOriginDigitalAssetV3 test', function (accounts) {
);
});

it.only('Reverts when not creator of edition', async () => {
it('Reverts when not creator of edition', async () => {
await expectRevert(
this.token.updateURIIfNoSaleMade(firstEditionTokenId, 'random', {from: contract}),
'Not creator'
'Only creator or proxy'
);
});

Expand Down

0 comments on commit 95a0073

Please sign in to comment.