##// END OF EJS Templates
run-tests: make --view work again
Matt Mackall -
r21919:c350cff5 default
parent child Browse files
Show More
@@ -1136,7 +1136,8 b' class TestResult(unittest._TextTestResul'
1136 if self._options.nodiff:
1136 if self._options.nodiff:
1137 pass
1137 pass
1138 elif self._options.view:
1138 elif self._options.view:
1139 os.system("%s %s %s" % (self._view, test.refpath, test.errpath))
1139 os.system("%s %s %s" %
1140 (self._options.view, test.refpath, test.errpath))
1140 else:
1141 else:
1141 failed, lines = getdiff(expected, got,
1142 failed, lines = getdiff(expected, got,
1142 test.refpath, test.errpath)
1143 test.refpath, test.errpath)
General Comments 0
You need to be logged in to leave comments. Login now