diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-01-27 21:22:39 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-01-28 09:14:13 +0100 |
commit | f86999da0c150d2a6976ba69a352164b55c52639 (patch) | |
tree | 3bba6dd489a4268a9c927f272fa99d9064528780 /tests/units/test_0004_hardware.py | |
parent | 7196e7198efa6805a566842522c34096bef122a2 (diff) |
add space after Content-Length and Content-Type
ogAdmServer needs this space to work fine.
Diffstat (limited to 'tests/units/test_0004_hardware.py')
-rw-r--r-- | tests/units/test_0004_hardware.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/test_0004_hardware.py b/tests/units/test_0004_hardware.py index 6cfaf77..f2210be 100644 --- a/tests/units/test_0004_hardware.py +++ b/tests/units/test_0004_hardware.py @@ -14,8 +14,8 @@ import json class TestHardwareMethods(unittest.TestCase): def test_get(self): - req = 'GET /hardware HTTP/1.0\r\nContent-Length:0\r\n' + \ - 'Content-Type:application/json\r\n\r\n ' + req = 'GET /hardware HTTP/1.0\r\nContent-Length: 0\r\n' + \ + 'Content-Type: application/json\r\n\r\n ' c = Client() s = Server() s.connect() |