@@ -, +, @@ cleanup tables - borrowers - branches - categories - sessions - sms_providers rows as before executing the test. --- t/db_dependent/Search/History.t | 4 ++++ 1 file changed, 4 insertions(+) --- a/t/db_dependent/Search/History.t +++ a/t/db_dependent/Search/History.t @@ -24,6 +24,10 @@ my $schema = Koha::Database->new->schema; $schema->storage->txn_begin; my $dbh = C4::Context->dbh; +# FIXME: SessionStorage defaults to mysql, but it seems to break transaction +# handling +t::lib::Mocks::mock_preference( 'SessionStorage', 'tmp' ); + use_ok('Koha::DateUtils'); use_ok('C4::Search::History'); --