test: fix rentEpoch value (#29999)

This commit is contained in:
Yihau Chen 2023-01-31 13:14:28 +08:00 committed by GitHub
parent aa72aa8779
commit 6489c20de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -319,7 +319,7 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: ['', 'base64'],
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
{
@ -327,7 +327,7 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: ['', 'base64'],
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
];
@ -353,7 +353,7 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: Buffer.from([]),
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
{
@ -361,7 +361,7 @@ describe('Connection', function () {
lamports: LAMPORTS_PER_SOL,
data: Buffer.from([]),
executable: false,
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
];
@ -5189,7 +5189,7 @@ describe('Connection', function () {
executable: false,
lamports: LAMPORTS_PER_SOL - 5000,
owner: SystemProgram.programId.toBase58(),
rentEpoch: 0,
rentEpoch: Math.pow(2, 64) - 1,
space: 0,
},
]);