From 58c246ea0552713e9f9372ade75f5f0ff05977bb Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 25 Nov 2022 10:50:01 +0000 Subject: [PATCH] Bug 32351: Holds.t - replace biblionumber by biblio_id Content-Type: text/plain; charset=utf-8 Trivial fix, found by bug 32350. Note that the test also passes without this value hash ;) Test plan: Run test. Signed-off-by: Marcel de Rooy --- t/db_dependent/Koha/Holds.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Holds.t b/t/db_dependent/Koha/Holds.t index 5a86d76261..58f6b47967 100755 --- a/t/db_dependent/Koha/Holds.t +++ b/t/db_dependent/Koha/Holds.t @@ -650,7 +650,7 @@ subtest 'Test Koha::Hold::item_group' => sub { my $item_group = $builder->build_object( { class => 'Koha::Biblio::ItemGroups', - value => { biblionumber => $item->biblionumber } + value => { biblio_id => $item->biblionumber } } ); my $reserve_id = AddReserve( -- 2.30.2