Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit fc0087c

Browse files
committed
fix(test): yada yada
1 parent f3530a2 commit fc0087c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

graph/tests/hypercert-minter-fraction.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ describe("Describe entity assertions", () => {
221221
units,
222222
);
223223

224-
let fractionIdTwo = getDefaultContractAddress().toHexString().concat("-2");
224+
let fractionIdTwo = "1-".concat(
225+
getDefaultContractAddress().toHexString().concat("-2"),
226+
);
225227

226228
createMockedFunction(
227229
getDefaultContractAddress(),
@@ -293,7 +295,7 @@ describe("Describe entity assertions", () => {
293295
"ClaimToken",
294296
fractionId,
295297
"claim",
296-
getDefaultContractAddress().toHexString().concat("-1"),
298+
"1-".concat(getDefaultContractAddress().toHexString().concat("-1")),
297299
);
298300
assert.fieldEquals("ClaimToken", fractionId, "owner", from.toHexString());
299301
assert.fieldEquals("ClaimToken", fractionId, "units", "200"); //function of buildValues (100 + i * 100)

0 commit comments

Comments
 (0)