From 7f02185998c75d5fcadf393dfefb1699a796a17b Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Thu, 11 Apr 2019 18:20:04 -0700 Subject: [PATCH] Update native-loader test to noop program rename --- web3.js/test/native-loader.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/test/native-loader.test.js b/web3.js/test/native-loader.test.js index 643e0a4e86..4e2aae75e8 100644 --- a/web3.js/test/native-loader.test.js +++ b/web3.js/test/native-loader.test.js @@ -23,7 +23,7 @@ test('load native program', async () => { const connection = new Connection(url); const from = await newAccountWithLamports(connection, 1024); - const programId = await NativeLoader.load(connection, from, 'noop'); + const programId = await NativeLoader.load(connection, from, 'solana_noop_program'); const transaction = new Transaction().add({ keys: [{pubkey: from.publicKey, isSigner: true}], programId,