Bug 32343: Prevent Koha/Patron.t to fail randomly
Highlighted by Bug 32030: fix test builder for boolean The attribute is named "unique_id", not "unique" Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
78ccd863fc
commit
509ff8f05c
1 changed files with 2 additions and 2 deletions
|
@ -552,14 +552,14 @@ subtest 'extended_attributes' => sub {
|
|||
my $attribute_type_1 = $builder->build_object(
|
||||
{
|
||||
class => 'Koha::Patron::Attribute::Types',
|
||||
value => { unique => 1 }
|
||||
value => { unique_id => 1 }
|
||||
}
|
||||
);
|
||||
|
||||
my $attribute_type_2 = $builder->build_object(
|
||||
{
|
||||
class => 'Koha::Patron::Attribute::Types',
|
||||
value => { unique => 0 }
|
||||
value => { unique_id => 0 }
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue