@@ -446,7 +446,9 @@ mod test {
446446
447447 use bitcoin:: hex:: FromHex ;
448448 use bitcoin:: { Amount , FeeRate , Script , XOnlyPublicKey } ;
449- use payjoin_test_utils:: { BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL } ;
449+ use payjoin_test_utils:: {
450+ BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO ,
451+ } ;
450452 use url:: Url ;
451453
452454 use super :: {
@@ -575,7 +577,7 @@ mod test {
575577
576578 #[ test]
577579 fn test_clear_unneeded_fields ( ) -> Result < ( ) , BoxError > {
578- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
580+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
579581 let x_only_key = XOnlyPublicKey :: from_str (
580582 "4f65949efe60e5be80cf171c06144641e832815de4f6ab3fe0257351aeb22a84" ,
581583 ) ?;
@@ -596,7 +598,7 @@ mod test {
596598 #[ test]
597599 fn test_official_vectors ( ) -> Result < ( ) , BoxError > {
598600 let ctx = create_psbt_context ( ) ?;
599- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
601+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
600602 for output in proposal. outputs_mut ( ) {
601603 output. bip32_derivation . clear ( ) ;
602604 }
@@ -616,7 +618,7 @@ mod test {
616618 #[ test]
617619 fn test_receiver_steals_sender_change ( ) -> Result < ( ) , BoxError > {
618620 let ctx = create_psbt_context ( ) ?;
619- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
621+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
620622 for output in proposal. outputs_mut ( ) {
621623 output. bip32_derivation . clear ( ) ;
622624 }
0 commit comments