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

(-)a/t/db_dependent/selenium/patrons_search.t (-2 / +5 lines)
Lines 50-56 subtest 'Search patrons' => sub { Link Here
50
    my $address    = q|<strong>add'res"s</strong> \123 ❤|;
50
    my $address    = q|<strong>add'res"s</strong> \123 ❤|;
51
    my $email      = q|a<strong>bad_email</strong>@example\123 ❤.com|;
51
    my $email      = q|a<strong>bad_email</strong>@example\123 ❤.com|;
52
    my $patron_category = $builder->build_object(
52
    my $patron_category = $builder->build_object(
53
        { class => 'Koha::Patron::Categories', category_type => 'A' } );
53
        {
54
            class => 'Koha::Patron::Categories',
55
            value => { category_type => 'A' }
56
        }
57
    );
54
    my $library = $builder->build_object(
58
    my $library = $builder->build_object(
55
        { class => 'Koha::Libraries', value => { branchname => $branchname } }
59
        { class => 'Koha::Libraries', value => { branchname => $branchname } }
56
    );
60
    );
57
- 

Return to bug 23280