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

(-)a/t/db_dependent/Circulation.t (-3 / +1 lines)
Lines 2307-2315 subtest '_FixAccountForLostAndReturned' => sub { Link Here
2307
            'Payment applied'
2307
            'Payment applied'
2308
        );
2308
        );
2309
2309
2310
        # TODO use add_debit when time comes
2311
        my $manual_debit_amount = 80;
2310
        my $manual_debit_amount = 80;
2312
        C4::Accounts::manualinvoice( $patron->id, undef, undef, 'FU', $manual_debit_amount );
2311
        $account->add_debit( { amount => $manual_debit_amount, type => 'fine' } );
2313
2312
2314
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2313
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2315
2314
2316
- 

Return to bug 21756