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

(-)a/t/db_dependent/Circulation.t (-3 / +1 lines)
Lines 2338-2346 subtest '_FixAccountForLostAndReturned' => sub { Link Here
2338
            'Payment applied'
2338
            'Payment applied'
2339
        );
2339
        );
2340
2340
2341
        # TODO use add_debit when time comes
2342
        my $manual_debit_amount = 80;
2341
        my $manual_debit_amount = 80;
2343
        C4::Accounts::manualinvoice( $patron->id, undef, undef, 'FU', $manual_debit_amount );
2342
        $account->add_debit( { amount => $manual_debit_amount, type => 'fine' } );
2344
2343
2345
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2344
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2346
2345
2347
- 

Return to bug 21756