Bug 35959: Add missing use statements in tests

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Julian Maurice 2024-07-05 23:15:32 +02:00 committed by Katrin Fischer
parent f7e1559a79
commit 25d3e167d6
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834
2 changed files with 2 additions and 0 deletions

View file

@ -29,6 +29,7 @@ use Koha::Biblio::ItemGroups;
use Koha::Database;
use Koha::DateUtils qw( dt_from_string );
use Koha::Holds;
use Koha::Old::Holds;
use t::lib::Mocks;
use t::lib::TestBuilder;

View file

@ -11,6 +11,7 @@ use C4::Reserves qw( CancelExpiredReserves );
use Koha::Database;
use Koha::DateUtils qw( dt_from_string );
use Koha::Holds;
use Koha::Old::Holds;
my $schema = Koha::Database->new->schema;
$schema->storage->txn_begin;