Bug 19529: Prevent NoIssuesChargeGuarantees.t to fail randomly
Use a categorycode != "X" Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
3bf15a5f04
commit
667c07e048
1 changed files with 5 additions and 0 deletions
|
@ -42,9 +42,13 @@ my $item = $builder->build(
|
|||
}
|
||||
);
|
||||
|
||||
my $patron_category = $builder->build({ source => 'Category', value => { categorycode => 'NOT_X', category_type => 'P', enrolmentfee => 0 } });
|
||||
my $patron = $builder->build(
|
||||
{
|
||||
source => 'Borrower',
|
||||
value => {
|
||||
patron_category => $patron_category->{categorycode},
|
||||
}
|
||||
}
|
||||
);
|
||||
my $guarantee = $builder->build(
|
||||
|
@ -52,6 +56,7 @@ my $guarantee = $builder->build(
|
|||
source => 'Borrower',
|
||||
value => {
|
||||
guarantorid => $patron->{borrowernumber},
|
||||
patron_category => $patron_category->{categorycode},
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue