Bug 29021: (QA follow-up) Remove useless warnings

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Tomás Cohen Arazi 2023-01-30 12:01:41 -03:00
parent d1bd38d853
commit bcaf68b51f
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -504,9 +504,9 @@ subtest 'Renewal related tests' => sub {
$schema->storage->txn_begin;
my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
my $staff = $builder->build_object( { class => 'Koha::Patrons' } );
my $item = $builder->build_object({ class => 'Koha::Items' });
my $issue = $builder->build_object(
my $staff = $builder->build_object( { class => 'Koha::Patrons' } );
my $item = $builder->build_sample_item;
my $issue = $builder->build_object(
{
class => 'Koha::Checkouts',
value => {
@ -525,6 +525,7 @@ subtest 'Renewal related tests' => sub {
debit_type_code => "OVERDUE",
status => "UNRETURNED",
amountoutstanding => 0,
amount => 0,
interface => 'commandline',
})->store;