Skip to content

Commit d78e255

Browse files
committed
update program names in ts tests
1 parent 3e5596f commit d78e255

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • basics
    • checking-accounts/native/tests
    • program-derived-addresses/native/tests

basics/checking-accounts/native/tests/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { start } from 'solana-bankrun';
44

55
describe('Checking accounts', async () => {
66
const PROGRAM_ID = PublicKey.unique();
7-
const context = await start([{ name: 'checking_accounts_program', programId: PROGRAM_ID }], []);
7+
const context = await start([{ name: 'checking_accounts_native_program', programId: PROGRAM_ID }], []);
88
const client = context.banksClient;
99
const payer = context.payer;
1010
const rent = await client.getRent();

basics/program-derived-addresses/native/tests/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { start } from 'solana-bankrun';
66

77
describe('PDAs', async () => {
88
const PROGRAM_ID = PublicKey.unique();
9-
const context = await start([{ name: 'program_derived_addresses_program', programId: PROGRAM_ID }], []);
9+
const context = await start([{ name: 'program_derived_addresses_native_program', programId: PROGRAM_ID }], []);
1010
const client = context.banksClient;
1111
const payer = context.payer;
1212
const rent = await client.getRent();

0 commit comments

Comments
 (0)