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

(-)a/t/db_dependent/Circulation/SwitchOnSiteCheckouts.t (-1 / +2 lines)
Lines 50-60 my $branch = $builder->build({ Link Here
50
    source => 'Branch',
50
    source => 'Branch',
51
});
51
});
52
52
53
my $patron_category = $builder->build({ source => 'Category', value => { categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0 } });
53
my $patron = $builder->build({
54
my $patron = $builder->build({
54
    source => 'Borrower',
55
    source => 'Borrower',
55
    value => {
56
    value => {
56
        branchcode => $branch->{branchcode},
57
        branchcode => $branch->{branchcode},
57
        debarred => undef,
58
        debarred => undef,
59
        categorycode => $patron_category->{categorycode},
58
    },
60
    },
59
});
61
});
60
62
61
- 

Return to bug 19455