From 9b4da7594f7422a244c0dc0b6ef6dff85f083a40 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: Martin Renvoize Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize --- t/db_dependent/Koha/Account.t | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t index 735a7c9..e6e0f67 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', -- 1.7.2.5