https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43082 --- Comment #1 from Martin Renvoize (ashimema) <martin.renvoize@openfifth.co.uk> --- Created attachment 201962 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=201962&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. -- You are receiving this mail because: You are watching all bug changes.