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

(-)a/t/db_dependent/Circulation.t (-2 / +8 lines)
Lines 5638-5644 subtest "GetSoonestRenewDate tests" => sub { Link Here
5638
            rule_value   => '7',
5638
            rule_value   => '7',
5639
        }
5639
        }
5640
    );
5640
    );
5641
    my $patron = $builder->build_object({ class => 'Koha::Patrons' });
5641
    my $patron = $builder->build_object(
5642
        {
5643
            class => 'Koha::Patrons',
5644
            value => {
5645
                autorenew_checkouts => 1,
5646
            }
5647
        }
5648
    );
5642
    my $item = $builder->build_sample_item();
5649
    my $item = $builder->build_sample_item();
5643
    my $issue = AddIssue( $patron->unblessed, $item->barcode);
5650
    my $issue = AddIssue( $patron->unblessed, $item->barcode);
5644
    my $datedue = dt_from_string( $issue->date_due() );
5651
    my $datedue = dt_from_string( $issue->date_due() );
5645
- 

Return to bug 32269