From 87f6507b2c73860cb8375e376e71d6ef0b84563b 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 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 --- 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.37.1 (Apple Git-137.1)