https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15524
--- Comment #47 from Nick Clemens <[email protected]> --- Created attachment 78136 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=78136&action=edit Bug 15524: (QA follow-up) Fix meaningless test The last test claims to allow a hold when branch=5 and patron=5, but look at the preceding statements: $rule_branch->max_holds(5); $rule_branch->update(); $rule_branch->max_holds(5); $rule_branch->insert(); The last insert will not be done, since the record is already present. A create should have triggered an error on the primary key. Obviously, we should use $rule_all. Test plan: Run the test again. Signed-off-by: Marcel de Rooy <[email protected]> -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
