From e4488a070a15bc3d58524d68104e22687a66c077 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 21 Jul 2017 12:07:19 +0000 Subject: [PATCH] Bug 18826 - (QA Followup) Add mock SessionStorage to patrons.t --- t/db_dependent/api/v1/patrons.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/db_dependent/api/v1/patrons.t b/t/db_dependent/api/v1/patrons.t index 705a2f8..909e36e 100644 --- a/t/db_dependent/api/v1/patrons.t +++ b/t/db_dependent/api/v1/patrons.t @@ -33,6 +33,10 @@ my $builder = t::lib::TestBuilder->new(); $schema->storage->txn_begin; +# FIXME: sessionStorage defaults to mysql, but it seems to break transaction handling +# this affects the other REST api tests +t::lib::Mocks::mock_preference( 'SessionStorage', 'tmp' ); + $ENV{REMOTE_ADDR} = '127.0.0.1'; my $t = Test::Mojo->new('Koha::REST::V1'); -- 2.1.4