summaryrefslogtreecommitdiffstats
path: root/tests/units/test_0005_other_requests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/test_0005_other_requests.py')
-rw-r--r--tests/units/test_0005_other_requests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/test_0005_other_requests.py b/tests/units/test_0005_other_requests.py
index 0a4d222..d7f204e 100644
--- a/tests/units/test_0005_other_requests.py
+++ b/tests/units/test_0005_other_requests.py
@@ -14,9 +14,9 @@ class TestOtherRequests(unittest.TestCase):
def test_non_existent_function(self):
post_req = 'POST /this_function_does_not_exist HTTP/1.0\r\n' + \
- 'Content-Length:0\r\nContent-Type:application/json\r\n\r\n'
+ 'Content-Length: 0\r\nContent-Type: application/json\r\n\r\n'
get_req = 'GET /this_function_does_not_exist HTTP/1.0\r\n' + \
- 'Content-Length:0\r\nContent-Type:application/json\r\n\r\n'
+ 'Content-Length: 0\r\nContent-Type: application/json\r\n\r\n'
c = Client()
s = Server()
s.connect()