[Proctor-checkins] CVS: Proctor/proctorlib runner.py,1.9,1.10
Status: Alpha
Brought to you by:
doughellmann
From: Doug H. <dou...@us...> - 2005-04-16 00:00:35
|
Update of /cvsroot/proctor/Proctor/proctorlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5782/proctorlib Modified Files: runner.py Log Message: Update to work with Python 2.4 Index: runner.py =================================================================== RCS file: /cvsroot/proctor/Proctor/proctorlib/runner.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** runner.py 8 Sep 2004 14:55:15 -0000 1.9 --- runner.py 16 Apr 2005 00:00:25 -0000 1.10 *************** *** 237,241 **** def addError(self, test, err): trace.into('TestResult', 'addError', test=test, err=err) ! unittest.TestResult.addError(self, test, err) print 'ERROR' print self._exc_info_to_string(err) --- 237,241 ---- def addError(self, test, err): trace.into('TestResult', 'addError', test=test, err=err) ! #unittest.TestResult.addError(self, test, err) print 'ERROR' print self._exc_info_to_string(err) *************** *** 245,249 **** def addFailure(self, test, err): trace.into('TestResult', 'addFailure', test=test, err=err) ! unittest.TestResult.addFailure(self, test, err) print 'FAIL' print self._exc_info_to_string(err) --- 245,249 ---- def addFailure(self, test, err): trace.into('TestResult', 'addFailure', test=test, err=err) ! #unittest.TestResult.addFailure(self, test, err) print 'FAIL' print self._exc_info_to_string(err) |