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

(-)a/t/db_dependent/selenium/regressions.t (-1 / +2 lines)
Lines 122-131 subtest 'Display circulation table correctly' => sub { Link Here
122
    );
122
    );
123
123
124
    my ( $biblionumber, $biblioitemnumber ) = add_biblio();
124
    my ( $biblionumber, $biblioitemnumber ) = add_biblio();
125
    my $item_type = $builder->build_object({ class => 'Koha::ItemTypes' });
125
    my $item = $builder->build_sample_item(
126
    my $item = $builder->build_sample_item(
126
        {
127
        {
127
            biblionumber => $biblionumber,
128
            biblionumber => $biblionumber,
128
            library      => $library->branchcode,
129
            library      => $library->branchcode,
130
            itype        => $item_type->itemtype,
129
        }
131
        }
130
    );
132
    );
131
    my $context = Test::MockModule->new('C4::Context');
133
    my $context = Test::MockModule->new('C4::Context');
132
- 

Return to bug 29860