From 490c548445dc75f440145a8b0c68f2c5e046facf Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 6 Mar 2019 10:09:05 -0300 Subject: [PATCH] Bug 18925: (QA follow-up) Remove weird 'Null' values for integer column Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Circulation/GetHardDueDate.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Circulation/GetHardDueDate.t b/t/db_dependent/Circulation/GetHardDueDate.t index 06069b8c73..af13311918 100644 --- a/t/db_dependent/Circulation/GetHardDueDate.t +++ b/t/db_dependent/Circulation/GetHardDueDate.t @@ -150,7 +150,7 @@ my $sampleissuingrule2 = { branchcode => $samplebranch2->{branchcode}, categorycode => $samplecat->{categorycode}, itemtype => 'BOOK', - renewalsallowed => 'Null', + renewalsallowed => 0, renewalperiod => 2, norenewalbefore => 7, auto_renew => 0, @@ -180,7 +180,7 @@ my $sampleissuingrule3 = { branchcode => $samplebranch1->{branchcode}, categorycode => $samplecat->{categorycode}, itemtype => 'DVD', - renewalsallowed => 'Null', + renewalsallowed => 0, renewalperiod => 3, norenewalbefore => 8, auto_renew => 0, -- 2.21.0