From d6a9bd14822a696c3fbca5f57ed2cc8f9d26f0ce Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 19 Apr 2023 10:27:59 +0000 Subject: [PATCH] Bug 32450: (QA follow-up) Fix failing tests Content-Type: text/plain; charset=utf-8 This patch fixes the failing tests in t/db_dependent/SIP/Patron.t Test plan: Run prove -v t/db_dependent/SIP/Patron.t and all tests should pass Signed-off-by: Marcel de Rooy --- t/db_dependent/SIP/Patron.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/db_dependent/SIP/Patron.t b/t/db_dependent/SIP/Patron.t index 04baa9e7bc..63047f8af8 100755 --- a/t/db_dependent/SIP/Patron.t +++ b/t/db_dependent/SIP/Patron.t @@ -296,6 +296,7 @@ subtest "NoIssuesChargeGuarantees tests" => sub { value => { borrowernumber => $patron->borrowernumber, amountoutstanding => 11, + debit_type_code => 'OVERDUE', } } )->store; @@ -306,6 +307,7 @@ subtest "NoIssuesChargeGuarantees tests" => sub { value => { borrowernumber => $child->borrowernumber, amountoutstanding => 0.11, + debit_type_code => 'OVERDUE', } } )->store; @@ -346,6 +348,7 @@ subtest "NoIssuesChargeGuarantorsWithGuarantees tests" => sub { value => { borrowernumber => $patron->borrowernumber, amountoutstanding => 11, + debit_type_code => 'OVERDUE', } } )->store; @@ -356,6 +359,7 @@ subtest "NoIssuesChargeGuarantorsWithGuarantees tests" => sub { value => { borrowernumber => $child->borrowernumber, amountoutstanding => 0.11, + debit_type_code => 'OVERDUE', } } )->store; -- 2.30.2