# HG changeset patch # User Erik Zielke # Date 1289210207 -3600 # Node ID 1ea19e827b5bda840137a223ba56bfae83a9f29b # Parent ff1badf6ae7a1995c7eecb83831fdb88197a5da3 run-test: fixed wrong parenthesis Fixed wrong placement of end parenthesis, from b911cb80c671 [ original upstream message ] diff -r ff1badf6ae7a -r 1ea19e827b5b tests/run-tests.py --- a/tests/run-tests.py Mon Nov 08 01:35:41 2010 +0100 +++ b/tests/run-tests.py Mon Nov 08 10:56:47 2010 +0100 @@ -556,8 +556,9 @@ postout.append(" " + lout) elif (el and (el.endswith(" (re)\n") and rematch(el[:-6] + '\n', lout) or - el.endswith(" (glob)\n") and globmatch(el[:-8] + '\n', lout)) or - el.endswith(" (esc)\n") and el.decode('string-escape') == l): + el.endswith(" (glob)\n") and globmatch(el[:-8] + '\n', lout) + or el.endswith(" (esc)\n") and + el.decode('string-escape') == l)): postout.append(" " + el) # fallback regex/glob/esc match else: if needescape(lout):