https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43082 --- Comment #2 from David Nind <david@davidnind.com> --- Created attachment 201970 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=201970&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> -- You are receiving this mail because: You are watching all bug changes.