@@ -, +, @@ NoIssuesChargeGuarantees.t to fail randomly --- t/db_dependent/Circulation/NoIssuesChargeGuarantees.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t +++ a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t @@ -47,7 +47,7 @@ my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { - patron_category => $patron_category->{categorycode}, + categorycode => $patron_category->{categorycode}, } } ); @@ -56,7 +56,7 @@ my $guarantee = $builder->build( source => 'Borrower', value => { guarantorid => $patron->borrowernumber, - patron_category => $patron_category->{categorycode}, + categorycode => $patron_category->{categorycode}, } } ); --