diff tests/testlib/badserverext.py @ 48630:f87b632406a9

test-http-bad-server: align output by using `;` This is the only message using a `,` instead of `;` and that seems unintentional. I am unifying the message before unigying the code. Differential Revision: https://phab.mercurial-scm.org/D12039
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 21 Jan 2022 02:07:13 +0100
parents ee1235afda4b
children 8039cca948f8
line wrap: on
line diff
--- a/tests/testlib/badserverext.py	Wed Jan 19 19:04:55 2022 +0100
+++ b/tests/testlib/badserverext.py	Fri Jan 21 02:07:13 2022 +0100
@@ -230,7 +230,7 @@
         object.__setattr__(self, '_closeafterrecvbytes', remaining)
 
         if remaining <= 0:
-            self._writelog(b'read limit reached, closing socket')
+            self._writelog(b'read limit reached; closing socket')
             self._close()
 
             # This is the easiest way to abort the current request.