
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, main has been updated via 1034f00474d5ae475c7a050949418ee01738c7c0 (commit) from fd662085836bc5fdddd3e805bf70c9f15de1450b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1034f00474d5ae475c7a050949418ee01738c7c0 Author: Jane Sandberg <js7389@princeton.edu> Date: Tue Apr 1 11:13:43 2025 -0700 LP2019430 follow-up: fix failing live test I had renamed lasso to library_group in the production code, but forgot to do so for the test as well. This commit fixes the test failure, and clears up some "Use of uninitialized value in numeric eq (==)" warnings as well. Signed-off-by: Jane Sandberg <js7389@princeton.edu> diff --git a/Open-ILS/src/perlmods/live_t/39-record-summary.t b/Open-ILS/src/perlmods/live_t/39-record-summary.t index 2b189838aa..2ef42c2538 100644 --- a/Open-ILS/src/perlmods/live_t/39-record-summary.t +++ b/Open-ILS/src/perlmods/live_t/39-record-summary.t @@ -90,7 +90,7 @@ subtest('with location_group option', sub { $org_unit, \@record_ids, {library_group => 1000001}); - my @library_group_counts = grep { $_->{lasso} == 1000001 } @{$response->{copy_counts}}; + my @library_group_counts = grep { $_->{library_group} && $_->{library_group} == 1000001 } @{$response->{copy_counts}}; is($library_group_counts[0]->{available}, 4, 'includes the total items in the specified library group'); }); ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/perlmods/live_t/39-record-summary.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS