Skip to content

Commit

Permalink
fix test: use different uloc when updating dame
Browse files Browse the repository at this point in the history
  • Loading branch information
magecnion committed Jul 26, 2024
1 parent aa2a944 commit 95791d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e-tests/tests/test-update-extended-token-uri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describeWithExistingNode("Frontier RPC (Extend Token URI)", (context) => {
context.web3.eth.accounts.wallet.add(FAITH_PRIVATE_KEY);
});

let uloc = `universal/location_${Date.now()}`;
let uloc = `universal/location/1/${Date.now()}`;
let extendResult: any;
let tokenURI = "https://example.com";

Expand Down Expand Up @@ -85,7 +85,7 @@ describeWithExistingNode("Frontier RPC (Extend Token URI)", (context) => {
describeWithExistingNode("Frontier RPC (Update Extended Token URI)", async (context) => {
let contract: Contract;

let uloc = `universal/location_${Date.now()}`;
let uloc = `universal/location/2/${Date.now()}`;
let tokenURI = "https://example2.com";
let newTokenURI = "https://new.example.com";
let updateExtensionResult: any;
Expand Down

0 comments on commit 95791d2

Please sign in to comment.