Skip to content

Commit

Permalink
fix(tests): Putting addr instead of hardcoded address
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesGuesnon committed Jan 30, 2024
1 parent a09bd01 commit 6d9937c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/e2eTest/v0.3.4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,7 @@ const test_suit = (setTezosToolkit: (tezos: TezosToolkit) => TezosToolkit) =>
it("should generate the SPOE transaction and it should be executed when applied", async () => {
const v = VersionedApi(version, addr);

const contract = await retry(() =>
tezos.wallet.at("KT1VcfDXTkmXtY5qyDdjJpkcU3ZiKkKbSqyS")
);
const contract = await retry(() => tezos.wallet.at(addr));
const ops = await retry(() =>
v.generateSpoeOps("myPayload", contract, tezos)
);
Expand Down

0 comments on commit 6d9937c

Please sign in to comment.