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

(-)a/t/db_dependent/Circulation.t (-3 / +1 lines)
Lines 2316-2324 subtest '_FixAccountForLostAndReturned' => sub { Link Here
2316
            'Payment applied'
2316
            'Payment applied'
2317
        );
2317
        );
2318
2318
2319
        # TODO use add_debit when time comes
2320
        my $manual_debit_amount = 80;
2319
        my $manual_debit_amount = 80;
2321
        C4::Accounts::manualinvoice( $patron->id, undef, undef, 'FU', $manual_debit_amount );
2320
        $account->add_debit( { amount => $manual_debit_amount, type => 'fine' } );
2322
2321
2323
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2322
        is( $account->balance, $manual_debit_amount + $replacement_amount - $payment_amount, 'Manual debit applied' );
2324
2323
2325
- 

Return to bug 21756