From b4b66d6094fc5d806198844e5874896849899d14 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 20 Jan 2017 10:11:47 +0100 Subject: [PATCH] Bug 17917: [QA Follow-up] Reprove Search.t The config tweaks from Search.t break check_sysprefs.t later on. Clearing the cache resolves that. Test plan: [1] Run prove t/db_dependent/Search.t t/db_dependent/check_sysprefs.t (in one statement) before and after applying this patch. Signed-off-by: Marcel de Rooy A prove t/db_dependent did not fail check_sysprefs.t (only skipping two tests: 00-strict.t and Koha/IssuingRules.t; not enough patience) Signed-off-by: Mason James --- t/db_dependent/Search.t | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t index f05165562d..ae3545298b 100644 --- a/t/db_dependent/Search.t +++ b/t/db_dependent/Search.t @@ -967,4 +967,7 @@ subtest 'UNIMARC + DOM' => sub { run_unimarc_search_tests('dom'); }; +# Make sure that following tests are not using our config settings +Koha::Caches->get_instance('config')->flush_all; + 1; -- 2.20.1