correct syntax error

svn: r16438
This commit is contained in:
Benny Malengier 2011-01-22 16:46:34 +00:00
parent 24959d62f7
commit ad0e1c0a29

View File

@ -36,15 +36,13 @@ class ErrorReportAssistantTest(TestCaseBase):
l.info("info message")
error_detail="Test error"
as = _ErrorReportAssistant.ErrorReportAssistant(error_detail=error_detail,
ass = _ErrorReportAssistant.ErrorReportAssistant(error_detail=error_detail,
rotate_handler=rh)
assert as._error_detail == error_detail
assert ass._error_detail == error_detail
l.removeHandler(rh)
def testSuite():
suite = unittest.makeSuite(ErrorReportAssistantTest,'test')
return suite