Bug 27992: (QA follow-up) Perltidy

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 7e0cd0e211)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
Katrin Fischer 2023-11-05 12:07:25 +00:00 committed by Fridolin Somers
parent de99239d0d
commit 9598e588c6
2 changed files with 9 additions and 9 deletions

View file

@ -829,9 +829,9 @@ sub CanBookBeIssued {
}
);
my $block_lost_return = C4::Context->preference("BlockReturnOfLostItems") ? 1 : 0;
my ( $stats_return, $stats_messages, $stats_iteminformation, $stats_borrower) =
AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'} );
ModDateLastSeen( $item_object->itemnumber, $block_lost_return ); # FIXME Move to Koha::Item
my ( $stats_return, $stats_messages, $stats_iteminformation, $stats_borrower ) =
AddReturn( $item_object->barcode, C4::Context->userenv->{'branch'} );
ModDateLastSeen( $item_object->itemnumber, $block_lost_return ); # FIXME Move to Koha::Item
return (
{
STATS => 1,

View file

@ -2317,17 +2317,17 @@ subtest 'CanBookBeIssued + Statistic patrons "X"' => sub {
is( $stat->categorycode, $patron->categorycode, 'Recorded a categorycode' );
is( $stat->location, $item_1->location, 'Recorded a location' );
t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode });
my $patron_2 = $builder->build_object( { class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
t::lib::Mocks::mock_userenv( { branchcode => $library->branchcode } );
my $patron_2 = $builder->build_object(
{ class => 'Koha::Patrons', value => { categorycode => $patron_category->{categorycode} } } );
my $item_2 = $builder->build_sample_item( { library => $library->branchcode } );
my $issue = AddIssue( $patron_2, $item_2->barcode );
my $issue = AddIssue( $patron_2, $item_2->barcode );
$item_2->discard_changes;
ok($item_2->onloan, "Item is checked out");
ok( $item_2->onloan, "Item is checked out" );
( $error, $question, $alerts ) = CanBookBeIssued( $patron, $item_2->barcode );
$item_2->discard_changes;
ok(!$item_2->onloan, "Checked out item is returned");
ok( !$item_2->onloan, "Checked out item is returned" );
# TODO There are other tests to provide here
};