https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43082 --- Comment #3 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Created attachment 202803 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=202803&action=edit Bug 43082: Fix flaky object filter test in action_logs.t The default `_match=contains` matching builds a LIKE query even on integer columns, so a plain `?object=42` also matches object values like 420 or 142. The test's dynamically-assigned patron borrowernumber (auto_increment, never reset by transaction rollback) could drift into a value containing "42" as a substring, intermittently inflating the match count in CI. Add `_match=exact` since the test's intent is an exact object id match. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> -- You are receiving this mail because: You are watching all bug changes.