Tests: don't exceed 79 characters.

This commit is contained in:
Andrey Zelenkov
2017-12-06 15:32:09 +03:00
parent d14c0774c7
commit 782fa1118d

View File

@@ -121,8 +121,9 @@ class TestUnitControl(TestUnit):
data = data.encode()
with self._control_sock() as sock:
req = ('PUT ' + path + (' HTTP/1.1\nHost: localhost\n'
'Content-Length: ') + str(len(data)) + '\r\n\r\n').encode() + data
req = ('PUT ' + path + ' HTTP/1.1\nHost: localhost\n'
+ 'Content-Length: ' + str(len(data))
+ '\r\n\r\n').encode() + data
sock.sendall(req)