@@ -, +, @@ --- t/db_dependent/Items.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/t/db_dependent/Items.t +++ a/t/db_dependent/Items.t @@ -322,7 +322,7 @@ subtest 'GetItemsInfo tests' => sub { $dbh->do(q{INSERT INTO tmp_holdsqueue (biblionumber, itemnumber, surname, borrowernumber ) VALUES (?, ?, "Zorro", 42)}, undef, $item_bibnum, $itemnumber); @results = GetItemsInfo( $biblio->biblionumber ); is( $results[0]->{ has_pending_hold }, "1", - 'Hold marked as pending/unavailable if not AllowItemsOnHoldCheckout' ); + 'Hold marked as pending/unavailable if tmp_holdsqueue is not empty for item' ); $schema->storage->txn_rollback; }; --