Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "spl-token-metadata-example"
version = "0.3.0"
description = "Solana Program Library Token Metadata Example Program"
documentation = "https://docs.rs/spl-token-group-interface"
documentation = "https://docs.rs/spl-token-metadata-example"
authors = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
Expand Down
6 changes: 1 addition & 5 deletions program/tests/program_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ pub async fn setup(
Arc<dyn ProgramClient<ProgramBanksClientProcessTransaction>>,
Arc<Keypair>,
) {
let mut program_test = ProgramTest::new(
"spl_token_metadata_example",
*program_id,
processor!(spl_token_metadata_example::processor::process),
);
let mut program_test = ProgramTest::new("spl_token_metadata_example", *program_id, None);

program_test.prefer_bpf(false); // simplicity in the build
program_test.add_program(
Expand Down