Skip to content

Commit

Permalink
Update additional e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksondoherty committed Aug 11, 2024
1 parent b6bc95d commit 9b4ea2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions token/js/test/e2e-2022/tokenGroup.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ describe('tokenGroup', async () => {
expect(group).to.deep.equal({
updateAuthority: newUpdateAuthority.publicKey,
mint: mint.publicKey,
size: 0,
maxSize: 10,
size: BigInt(0),
maxSize: BigInt(10),
});
});
});
2 changes: 1 addition & 1 deletion token/js/test/e2e-2022/tokenGroupMember.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('tokenGroupMember', async () => {
const tokenGroupMember = {
mint: memberMint.publicKey,
group: groupMint.publicKey,
memberNumber: 1,
memberNumber: BigInt(1),
};

await tokenGroupMemberInitializeWithRentTransfer(
Expand Down

0 comments on commit 9b4ea2b

Please sign in to comment.