@@ -443,7 +443,9 @@ mod test {
443443
444444 use bitcoin:: hex:: FromHex ;
445445 use bitcoin:: { Amount , FeeRate , Script , XOnlyPublicKey } ;
446- use payjoin_test_utils:: { BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL } ;
446+ use payjoin_test_utils:: {
447+ BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO ,
448+ } ;
447449 use url:: Url ;
448450
449451 use super :: {
@@ -571,7 +573,7 @@ mod test {
571573
572574 #[ test]
573575 fn test_clear_unneeded_fields ( ) -> Result < ( ) , BoxError > {
574- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
576+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
575577 let x_only_key = XOnlyPublicKey :: from_str (
576578 "4f65949efe60e5be80cf171c06144641e832815de4f6ab3fe0257351aeb22a84" ,
577579 ) ?;
@@ -592,7 +594,7 @@ mod test {
592594 #[ test]
593595 fn test_official_vectors ( ) -> Result < ( ) , BoxError > {
594596 let ctx = create_psbt_context ( ) ?;
595- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
597+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
596598 for output in proposal. outputs_mut ( ) {
597599 output. bip32_derivation . clear ( ) ;
598600 }
@@ -612,7 +614,7 @@ mod test {
612614 #[ test]
613615 fn test_receiver_steals_sender_change ( ) -> Result < ( ) , BoxError > {
614616 let ctx = create_psbt_context ( ) ?;
615- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
617+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
616618 for output in proposal. outputs_mut ( ) {
617619 output. bip32_derivation . clear ( ) ;
618620 }
0 commit comments