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

(-)a/t/db_dependent/Koha/Account.t (-2 / +1 lines)
Lines 82-88 subtest 'outstanding_credits() tests' => sub { Link Here
82
82
83
    my ( $total, $lines ) = $account->outstanding_credits();
83
    my ( $total, $lines ) = $account->outstanding_credits();
84
84
85
    is( $total, -10, 'Outstandig debits total is correctly calculated' );
85
    is( $total, -10, 'Outstandig credits total is correctly calculated' );
86
86
87
    my $i = 0;
87
    my $i = 0;
88
    foreach my $line ( @{ $lines->as_list } ) {
88
    foreach my $line ( @{ $lines->as_list } ) {
89
- 

Return to bug 20990