test: repair tests, `space` having been added to the account response (#28518)
This commit is contained in:
parent
c68fb5f68d
commit
65f1614a42
|
@ -97,6 +97,7 @@ describe('Subscriptions', () => {
|
||||||
lamports: 0,
|
lamports: 0,
|
||||||
owner: PublicKey.default.toBase58(),
|
owner: PublicKey.default.toBase58(),
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -210,6 +211,7 @@ describe('Subscriptions', () => {
|
||||||
lamports: 0,
|
lamports: 0,
|
||||||
owner: PublicKey.default.toBase58(),
|
owner: PublicKey.default.toBase58(),
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -230,6 +230,7 @@ describe('Connection', function () {
|
||||||
data: ['', 'base64'],
|
data: ['', 'base64'],
|
||||||
executable: false,
|
executable: false,
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
owner: '11111111111111111111111111111111',
|
owner: '11111111111111111111111111111111',
|
||||||
|
@ -237,6 +238,7 @@ describe('Connection', function () {
|
||||||
data: ['', 'base64'],
|
data: ['', 'base64'],
|
||||||
executable: false,
|
executable: false,
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -262,6 +264,7 @@ describe('Connection', function () {
|
||||||
data: Buffer.from([]),
|
data: Buffer.from([]),
|
||||||
executable: false,
|
executable: false,
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
owner: new PublicKey('11111111111111111111111111111111'),
|
owner: new PublicKey('11111111111111111111111111111111'),
|
||||||
|
@ -269,6 +272,7 @@ describe('Connection', function () {
|
||||||
data: Buffer.from([]),
|
data: Buffer.from([]),
|
||||||
executable: false,
|
executable: false,
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -3935,6 +3939,7 @@ describe('Connection', function () {
|
||||||
lamports: LAMPORTS_PER_SOL - 5000,
|
lamports: LAMPORTS_PER_SOL - 5000,
|
||||||
owner: SystemProgram.programId.toBase58(),
|
owner: SystemProgram.programId.toBase58(),
|
||||||
rentEpoch: 0,
|
rentEpoch: 0,
|
||||||
|
space: 0,
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue