From 65ffbc27d9731ced72cd0230bd75e07d38900431 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 5 Jul 2019 14:55:34 -0300 Subject: [PATCH] Bug 22563: (follow-up) Fix tests in Koha/Account.t Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Koha/Account.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t index 735a7c950a..e6e0f6734f 100755 --- a/t/db_dependent/Koha/Account.t +++ b/t/db_dependent/Koha/Account.t @@ -622,7 +622,7 @@ subtest 'pay() handles lost items when paying a specific lost fee' => sub { borrowernumber => $patron->id, itemnumber => $item->id, date => \'NOW()', - accounttype => 'L', + accounttype => 'LOST', interface => 'cli', amount => '1', amountoutstanding => '1', @@ -695,7 +695,7 @@ subtest 'pay() handles lost items when paying by amount ( not specifying the los borrowernumber => $patron->id, itemnumber => $item->id, date => \'NOW()', - accounttype => 'L', + accounttype => 'LOST', interface => 'cli', amount => '1', amountoutstanding => '1', @@ -766,7 +766,7 @@ subtest 'Koha::Account::Line::apply() handles lost items' => sub { borrowernumber => $patron->id, itemnumber => $item->id, date => \'NOW()', - accounttype => 'L', + accounttype => 'LOST', interface => 'cli', amount => '1', amountoutstanding => '1', -- 2.22.0