@@ -444,7 +444,9 @@ mod test {
444444
445445 use bitcoin:: hex:: FromHex ;
446446 use bitcoin:: { Amount , FeeRate , Script , XOnlyPublicKey } ;
447- use payjoin_test_utils:: { BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL } ;
447+ use payjoin_test_utils:: {
448+ BoxError , PARSED_ORIGINAL_PSBT , PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO ,
449+ } ;
448450 use url:: Url ;
449451
450452 use super :: {
@@ -573,7 +575,7 @@ mod test {
573575
574576 #[ test]
575577 fn test_clear_unneeded_fields ( ) -> Result < ( ) , BoxError > {
576- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
578+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
577579 let x_only_key = XOnlyPublicKey :: from_str (
578580 "4f65949efe60e5be80cf171c06144641e832815de4f6ab3fe0257351aeb22a84" ,
579581 ) ?;
@@ -594,7 +596,7 @@ mod test {
594596 #[ test]
595597 fn test_official_vectors ( ) -> Result < ( ) , BoxError > {
596598 let ctx = create_psbt_context ( ) ?;
597- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
599+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
598600 for output in proposal. outputs_mut ( ) {
599601 output. bip32_derivation . clear ( ) ;
600602 }
@@ -614,7 +616,7 @@ mod test {
614616 #[ test]
615617 fn test_receiver_steals_sender_change ( ) -> Result < ( ) , BoxError > {
616618 let ctx = create_psbt_context ( ) ?;
617- let mut proposal = PARSED_PAYJOIN_PROPOSAL . clone ( ) ;
619+ let mut proposal = PARSED_PAYJOIN_PROPOSAL_WITH_SENDER_INFO . clone ( ) ;
618620 for output in proposal. outputs_mut ( ) {
619621 output. bip32_derivation . clear ( ) ;
620622 }
0 commit comments