diff --git a/buildbot/test/test_status.py b/buildbot/test/test_status.py index 7df6263f293..7d3f9f62ad5 100644 --- a/buildbot/test/test_status.py +++ b/buildbot/test/test_status.py @@ -164,9 +164,12 @@ def customHTMLMailMessage(attrs): text = list() text.append("

STATUS %s:

" % (attrs['buildURL'], attrs['result'].title())) - text.append("

Recent Changes:

") - for c in attrs['changes']: - text.append(template.module.change(**c.html_dict())) + # TODO: include the same filters in an email rendering as are available in + # web renderings (bug #691) + + #text.append("

Recent Changes:

") + #for c in attrs['changes']: + # text.append(template.module.change(**c.html_dict())) name, url, lines, status = attrs['logs'][-1] text.append("

Last %d lines of '%s':

" % (logLines, name)) @@ -390,7 +393,7 @@ def testCustomHTMLMessage(self): # #self.fail(t) self.failUnlessIn("

Last 3 lines of 'step.test':

", t) - self.failUnlessIn("Changed by: author2", t) + #self.failUnlessIn("Changed by: author2", t) # see comments in customHTMLMailMessage, above self.failUnlessIn("Test 3 failed", t) self.failUnlessIn("number was: 1", t)