Skip to content

Commit 682daa5

Browse files
committed
fix vaa deserialize test
1 parent b971532 commit 682daa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/definitions/__tests__/blindDeserialize.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ describe("Blind Deserialize", function () {
2222

2323
console.time("exhaustive");
2424
const result = exhaustiveDeserialize(vaa.payload);
25-
expect(result).toHaveLength(1);
25+
expect(result).toHaveLength(2);
2626
console.timeEnd("exhaustive");
2727

2828
console.time("blind");
2929
const blind = blindDeserializePayload(vaa.payload);
30-
expect(blind).toHaveLength(1);
30+
expect(blind).toHaveLength(2);
3131
console.timeEnd("blind");
3232
}
3333
});

0 commit comments

Comments
 (0)