From 0aa2a4346c69dbf0a68e004825254220886ef42a Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 8 Nov 2013 08:33:29 +0100 Subject: [PATCH] Bug 11218: (follow-up) fix some whitespace and a variable declaration Fixing some things the QA script pointed out this morning: - whitespace - variable declaration Signed-off-by: Kyle M Hall Signed-off-by: Galen Charlton (cherry picked from commit 1528a6deda468dc4a7391ea7a9fff60c57af314f) Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Circulation.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Circulation.t b/t/db_dependent/Circulation.t index 5db9844dd7..656d87a935 100755 --- a/t/db_dependent/Circulation.t +++ b/t/db_dependent/Circulation.t @@ -345,7 +345,7 @@ C4::Context->dbh->do("DELETE FROM borrowers WHERE cardnumber = '99999999999'"); # Bug 11218 - Due notices not generated - GetUpcomingDueIssues needs to select due today items as well - $datedue2 = AddIssue( $a_borrower, $barcode3, $today ); + my $datedue3 = AddIssue( $a_borrower, $barcode3, $today ); $upcoming_dues = C4::Circulation::GetUpcomingDueIssues( { days_in_advance => -1 } ); is ( scalar ( @$upcoming_dues), 0, "Overdues can not be selected" ); -- 2.39.5