run-tests: fix broken regular expression
The regular expression in use passed tests because the test repo only
has single-digit changesets present. When I tried to use this for real
today, it broke, because the regular expression would only match a
single digit.
https://xkcd.com/1171/, or something like that.
--- a/tests/run-tests.py Tue Apr 05 12:19:45 2016 -0700
+++ b/tests/run-tests.py Wed Apr 06 22:26:47 2016 -0400
@@ -1864,7 +1864,7 @@
sub.wait()
m = re.search(
(r'\nThe first (?P<goodbad>bad|good) revision '
- r'is:\nchangeset: +\d:(?P<node>[a-f0-9]+)\n.*\n'
+ r'is:\nchangeset: +\d+:(?P<node>[a-f0-9]+)\n.*\n'
r'summary: +(?P<summary>[^\n]+)\n'),
data, (re.MULTILINE | re.DOTALL))
if m is None: