@@ -, +, @@ --- t/db_dependent/BiblioObject.t | 4 ++-- t/db_dependent/Hold.t | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/t/db_dependent/BiblioObject.t +++ a/t/db_dependent/BiblioObject.t @@ -20,7 +20,7 @@ use Modern::Perl; use C4::Context; use C4::Biblio qw( AddBiblio ); use Koha::Database; -use Koha::Branches; +use Koha::Libraries; use Koha::Patrons; use Test::More tests => 4; @@ -34,7 +34,7 @@ $schema->storage->txn_begin(); my $dbh = C4::Context->dbh; $dbh->{RaiseError} = 1; -my @branches = Koha::Branches->search(); +my @branches = Koha::Libraries->search(); my $borrower = Koha::Patrons->search()->next(); my $biblio = MARC::Record->new(); --- a/t/db_dependent/Hold.t +++ a/t/db_dependent/Hold.t @@ -21,7 +21,7 @@ use C4::Context; use C4::Biblio qw( AddBiblio ); use Koha::Database; use Koha::Patrons; -use Koha::Branches; +use Koha::Libraries; use Koha::Item; use Test::More tests => 23; @@ -34,7 +34,7 @@ $schema->storage->txn_begin(); my $dbh = C4::Context->dbh; $dbh->{RaiseError} = 1; -my @branches = Koha::Branches->search(); +my @branches = Koha::Libraries->search(); my $borrower = Koha::Patrons->search()->next(); my $biblio = MARC::Record->new(); --