##// END OF EJS Templates
run-tests: produce error on running a failing test...
anuraggoel -
r21735:5ee547fd default
parent child Browse files
Show More
@@ -1076,6 +1076,9 b' class TestResult(unittest._TextTestResul'
1076
1076
1077 if self._options.first:
1077 if self._options.first:
1078 self.stop()
1078 self.stop()
1079 else:
1080 if not self._options.nodiff:
1081 self.stream.write('\nERROR: %s output changed\n' % test)
1079
1082
1080 def addError(self, *args, **kwargs):
1083 def addError(self, *args, **kwargs):
1081 super(TestResult, self).addError(*args, **kwargs)
1084 super(TestResult, self).addError(*args, **kwargs)
General Comments 0
You need to be logged in to leave comments. Login now