From f6c4a1c3c4ada7bf7307bbc6d3ba1d094cac7539 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 19 Feb 2018 17:40:06 -0300 Subject: [PATCH] Bug 20250: (bug 19529 follow-up) Prevent NoIssuesChargeGuarantees.t to fail randomly Signed-off-by: Jonathan Druart Conflicts: t/db_dependent/Circulation/NoIssuesChargeGuarantees.t Signed-off-by: Nick Clemens (cherry picked from commit b671510474fc00e82d5dbec0ff59c92bea7bcb31) Signed-off-by: Fridolin Somers --- t/db_dependent/Circulation/NoIssuesChargeGuarantees.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t b/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t index 5f07c6b05b..7babf5d644 100644 --- a/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t +++ b/t/db_dependent/Circulation/NoIssuesChargeGuarantees.t @@ -45,7 +45,7 @@ my $patron = $builder->build( { source => 'Borrower', value => { - patron_category => $patron_category->{categorycode}, + categorycode => $patron_category->{categorycode}, } } ); @@ -54,7 +54,7 @@ my $guarantee = $builder->build( source => 'Borrower', value => { guarantorid => $patron->{borrowernumber}, - patron_category => $patron_category->{categorycode}, + categorycode => $patron_category->{categorycode}, } } ); -- 2.39.5