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

(-)a/t/db_dependent/Koha/Account.t (-2 / +1 lines)
Lines 100-106 subtest 'outstanding_credits() tests' => sub { Link Here
100
100
101
    my ( $total, $lines ) = $account->outstanding_credits();
101
    my ( $total, $lines ) = $account->outstanding_credits();
102
102
103
    is( $total, -10, 'Outstandig debits total is correctly calculated' );
103
    is( $total, -10, 'Outstandig credits total is correctly calculated' );
104
104
105
    my $i = 0;
105
    my $i = 0;
106
    foreach my $line ( @{ $lines->as_list } ) {
106
    foreach my $line ( @{ $lines->as_list } ) {
107
- 

Return to bug 20990