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

(-)a/t/db_dependent/Circulation.t (-2 / +1 lines)
Lines 2327-2333 subtest 'CanBookBeIssued | notforloan' => sub { Link Here
2327
        );
2327
        );
2328
2328
2329
        # for loan at item type and item level
2329
        # for loan at item type and item level
2330
        $item->notforloan(undef)->store;
2330
        $item->notforloan(0)->store;
2331
        $item->biblioitem->itemtype($itemtype->{itemtype})->store;
2331
        $item->biblioitem->itemtype($itemtype->{itemtype})->store;
2332
        ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2332
        ( $issuingimpossible, $needsconfirmation ) = CanBookBeIssued( $patron, $item->barcode, undef, undef, undef, undef );
2333
        is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
2333
        is_deeply( $needsconfirmation, {}, 'Item can be issued to this patron' );
2334
- 

Return to bug 21597