Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Oct 8, 2024
1 parent 794d4ff commit 9634810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soroban-sdk-macros/src/derive_fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ pub fn derive_pub_fn(
return Err(quote! { #(#compile_errors)* });
}

let testutils_only_code = if cfg!(not(feature = "testutils")) {
let testutils_only_code = if cfg!(feature = "testutils") {
Some(quote! {
#[deprecated(note = #deprecated_note)]
pub fn invoke_raw_slice(
Expand Down

0 comments on commit 9634810

Please sign in to comment.