From e4bb48995af246ff799af36eb3aa14d4fa95a3a0 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Tue, 28 Oct 2014 13:31:09 +0000 Subject: [PATCH] Mention fix for issue 615 in changelog Fixes issue 615. --- CHANGELOG | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index accddb70d..658d3b86b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,11 @@ 2.7.0.dev (compared to 2.6.4) ----------------------------- +- fix issue615: assertion re-writing did not correctly escape % signs + when formatting boolean operations, which tripped over mixing + booleans with modulo operators. Thanks to Tom Viner for the report, + triaging and fix. + - implement issue351: add ability to specify parametrize ids as a callable to generate custom test ids. Thanks Brianna Laugher for the idea and implementation.