View | Details | Raw Unified | Return to bug 16390
Collapse All | Expand All

(-)a/t/db_dependent/Accounts.t (-2 / +1 lines)
Lines 107-113 my @test_data = ( Link Here
107
    { amount => -5    , days_ago => $days + 1 , description =>'purge_zero_balance_fees should not delete fees with negative amout owed after threshold day'  , delete => 0 }
107
    { amount => -5    , days_ago => $days + 1 , description =>'purge_zero_balance_fees should not delete fees with negative amout owed after threshold day'  , delete => 0 }
108
);
108
);
109
109
110
my $borrower = Koha::Patron->new( { firstname => 'Test', surname => 'Patron', categorycode => 'PT', branchcode => 'MPL' } )->store();
110
my $borrower = Koha::Patron->new( { firstname => 'Test', surname => 'Patron', categorycode => 'PT', branchcode => $branchcode } )->store();
111
111
112
for my $data ( @test_data ) {
112
for my $data ( @test_data ) {
113
    $sth->execute($borrower->borrowernumber, $data->{amount}, $data->{days_ago}, $data->{description});
113
    $sth->execute($borrower->borrowernumber, $data->{amount}, $data->{days_ago}, $data->{description});
114
- 

Return to bug 16390