# HG changeset patch # User Matt Mackall # Date 2014-07-18 22:52:18 # Node ID c350cff5844440962eea9e699147ee4814e7a06c # Parent 10abc3a5c6b21e1256c3e601fe4a950208e9293c run-tests: make --view work again diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1136,7 +1136,8 @@ class TestResult(unittest._TextTestResul if self._options.nodiff: pass elif self._options.view: - os.system("%s %s %s" % (self._view, test.refpath, test.errpath)) + os.system("%s %s %s" % + (self._options.view, test.refpath, test.errpath)) else: failed, lines = getdiff(expected, got, test.refpath, test.errpath)