@@ -443,7 +443,7 @@ 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:: { BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO } ;
447447 use url:: Url ;
448448
449449 use super :: {
@@ -571,7 +571,7 @@ mod test {
571571
572572 #[ test]
573573 fn test_clear_unneeded_fields ( ) -> Result < ( ) , BoxError > {
574- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
574+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
575575 let x_only_key = XOnlyPublicKey :: from_str (
576576 "4f65949efe60e5be80cf171c06144641e832815de4f6ab3fe0257351aeb22a84" ,
577577 ) ?;
@@ -592,7 +592,7 @@ mod test {
592592 #[ test]
593593 fn test_official_vectors ( ) -> Result < ( ) , BoxError > {
594594 let ctx = create_psbt_context ( ) ?;
595- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
595+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
596596 for output in proposal. outputs_mut ( ) {
597597 output. bip32_derivation . clear ( ) ;
598598 }
@@ -612,7 +612,7 @@ mod test {
612612 #[ test]
613613 fn test_receiver_steals_sender_change ( ) -> Result < ( ) , BoxError > {
614614 let ctx = create_psbt_context ( ) ?;
615- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
615+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
616616 for output in proposal. outputs_mut ( ) {
617617 output. bip32_derivation . clear ( ) ;
618618 }
0 commit comments