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

(-)a/t/db_dependent/Koha/Patron.t (-3 / +2 lines)
Lines 552-565 subtest 'extended_attributes' => sub { Link Here
552
        my $attribute_type_1 = $builder->build_object(
552
        my $attribute_type_1 = $builder->build_object(
553
            {
553
            {
554
                class => 'Koha::Patron::Attribute::Types',
554
                class => 'Koha::Patron::Attribute::Types',
555
                value => { unique => 1 }
555
                value => { unique_id => 1 }
556
            }
556
            }
557
        );
557
        );
558
558
559
        my $attribute_type_2 = $builder->build_object(
559
        my $attribute_type_2 = $builder->build_object(
560
            {
560
            {
561
                class => 'Koha::Patron::Attribute::Types',
561
                class => 'Koha::Patron::Attribute::Types',
562
                value => { unique => 0 }
562
                value => { unique_id => 0 }
563
            }
563
            }
564
        );
564
        );
565
565
566
- 

Return to bug 32343