diff --git a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t b/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t index c5eda7b43d..201a7650fb 100644 --- a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t +++ b/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t @@ -42,9 +42,13 @@ my $item = $builder->build( } ); +my $patron_category = $builder->build({ source => 'Category', value => { categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0 } }); my $patron = $builder->build( { source => 'Borrower', + value => { + patron_category => $patron_category->{categorycode}, + } } ); my $guarantee = $builder->build( @@ -52,6 +56,7 @@ my $guarantee = $builder->build( source => 'Borrower', value => { guarantorid => $patron->{borrowernumber}, + patron_category => $patron_category->{categorycode}, } } );