From 4b65efcc007c24df9e9b644a5342a4f6e9771ec0 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 5 Mar 2024 12:38:02 +0000 Subject: [PATCH] Bug 35100: (follow-up) Tidy Signed-off-by: Martin Renvoize --- C4/RotatingCollections.pm | 10 +++++----- t/db_dependent/SIP/Transaction.t | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/C4/RotatingCollections.pm b/C4/RotatingCollections.pm index 41d14d45aa4..a31938343b2 100644 --- a/C4/RotatingCollections.pm +++ b/C4/RotatingCollections.pm @@ -487,11 +487,11 @@ sub TransferCollection { replace => 1 } ); # Replace transfer - # FIXME: If we just replaced a StockRotationAdvance, - # it will get enqueued afresh on the next cron run.. but - # that will also push the stage on too.. and what about if - # we were at the first stage.. then there won't be a datearrived - # to calculate against. See bug 35100 + # FIXME: If we just replaced a StockRotationAdvance, + # it will get enqueued afresh on the next cron run.. but + # that will also push the stage on too.. and what about if + # we were at the first stage.. then there won't be a datearrived + # to calculate against. See bug 35100 } } elsif ( $_->isa('Koha::Exceptions::Item::Transfer::Limit') ) { diff --git a/t/db_dependent/SIP/Transaction.t b/t/db_dependent/SIP/Transaction.t index fdb595c6151..11ed6305051 100755 --- a/t/db_dependent/SIP/Transaction.t +++ b/t/db_dependent/SIP/Transaction.t @@ -405,7 +405,7 @@ subtest do_checkin => sub { $ci_transaction->do_checkin( $library->branchcode, undef ); is( $patron->checkouts->count, 0, 'Checkin should have been done successfully' ); - my $result = $ci_transaction->do_checkin( $library2->branchcode, undef ); + my $result = $ci_transaction->do_checkin( $library2->branchcode, undef ); my $transfer = $item->get_transfer; is( $ci_transaction->alert_type, '04', "Checkin of item no issued at another branch succeeds" ); is_deeply( -- 2.44.0