https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43034 --- Comment #1 from Kyle M Hall (khall) <kyle@bywatersolutions.com> --- Created attachment 201739 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=201739&action=edit Bug 43034: Fix t/db_dependent/Koha/EDI.t failure when SearchEngine is Elasticsearch Bug 21820 made the Zebra queue update conditional on the new ElasticsearchEnableZebraQueue system preference, which defaults to off. The 'basic_quote_processing' subtest in t/db_dependent/Koha/EDI.t counts the log lines process_quote emits, and two of those are the "specialUpdate biblioserver" traces that ModZebra logs only when the Zebra queue path runs. When the SearchEngine preference is set to Elasticsearch, that path no longer runs by default, so the subtest now records 6 log lines instead of 8 and fails: # Failed test '8 log lines recorded for passed quote file' # got: '6' # expected: '8' # Failed test 'Trace recorded biblioserver index' Test Plan: 1) Set the SearchEngine system preference to 'Elasticsearch' 2) prove t/db_dependent/Koha/EDI.t 3) Note the basic_quote_processing subtest fails with "got: '6', expected: '8'" 4) Apply this patch 5) prove t/db_dependent/Koha/EDI.t 6) Note the tests pass! -- You are receiving this mail because: You are watching all bug changes.