# HG changeset patch # User Pulkit Goyal # Date 1535391691 -10800 # Node ID 97f52862b1bd3de913261e0aba7e1a35ceb9de12 # Parent a235ee4cfc1c6f74147043bc29171f68b01b39d5 run-tests: fix the remaining failure of test-run-tests.py Looks like durin42 misindented this. This makes test-run-tests.py passes but I cannot reason why. Differential Revision: https://phab.mercurial-scm.org/D4402 diff -r a235ee4cfc1c -r 97f52862b1bd tests/run-tests.py --- a/tests/run-tests.py Mon Aug 27 20:39:32 2018 +0300 +++ b/tests/run-tests.py Mon Aug 27 20:41:31 2018 +0300 @@ -1357,10 +1357,10 @@ script.append( b'echo END %s %s >> "$HGCATAPULTSERVERPIPE"\n' % ( session, active[0])) - script.append( - b'echo START %s %s >> "$HGCATAPULTSERVERPIPE"\n' % ( - session, quoted)) - active[0:] = [quoted] + script.append( + b'echo START %s %s >> "$HGCATAPULTSERVERPIPE"\n' % ( + session, quoted)) + active[0:] = [quoted] script = []