@@ -, +, @@ --- t/db_dependent/Koha/Item.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/db_dependent/Koha/Item.t +++ a/t/db_dependent/Koha/Item.t @@ -153,10 +153,10 @@ subtest 'pickup_locations' => sub { # Cleanup database Koha::Holds->search->delete; + $dbh->do('DELETE FROM issues'); Koha::Patrons->search->delete; Koha::Items->search->delete; Koha::Libraries->search->delete; - $dbh->do('DELETE FROM issues'); Koha::CirculationRules->search->delete; Koha::CirculationRules->set_rules( { @@ -331,7 +331,7 @@ subtest 'pickup_locations' => sub { }; subtest 'renewal_branchcode' => sub { - plan tests => 15; + plan tests => 13; $schema->storage->txn_begin; --