summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0007_software.py
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2020-01-27 21:22:39 +0100
committerAlvaro Neira Ayuso <aneira@soleta.eu>2020-01-28 09:14:13 +0100
commitf86999da0c150d2a6976ba69a352164b55c52639 (patch)
tree3bba6dd489a4268a9c927f272fa99d9064528780 /tests/units/test_0007_software.py
parent7196e7198efa6805a566842522c34096bef122a2 (diff)
add space after Content-Length and Content-Type
ogAdmServer needs this space to work fine.
Diffstat (limited to 'tests/units/test_0007_software.py')
-rw-r--r--tests/units/test_0007_software.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/test_0007_software.py b/tests/units/test_0007_software.py
index 0984c56..4734384 100644
--- a/tests/units/test_0007_software.py
+++ b/tests/units/test_0007_software.py
@@ -15,9 +15,9 @@ class TestSoftwareMethods(unittest.TestCase):
def test_correct_post(self):
req_json = '{"disk": 1, "partition": 1}'
- req = 'POST /software HTTP/1.0\r\nContent-Length:' + \
+ req = 'POST /software HTTP/1.0\r\nContent-Length: ' + \
str(len(req_json)) + \
- '\r\nContent-Type:application/json\r\n\r\n' + req_json
+ '\r\nContent-Type: application/json\r\n\r\n' + req_json
c = Client()
s = Server()
s.connect()