aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_server.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2012-01-21 12:43:00 +1300
committerAldo Cortesi <aldo@nullcube.com>2012-01-21 12:43:00 +1300
commitd5e3722c97c2094032fe02095c3b8f7cb4df87c3 (patch)
tree457bc724192c9eae0900aa2e13a09e9d3300d266 /test/test_server.py
parent2a09cad420f2d74246deda7c48552b089714a0b6 (diff)
downloadmitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.tar.gz
mitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.tar.bz2
mitmproxy-d5e3722c97c2094032fe02095c3b8f7cb4df87c3.zip
Fix an issue caused by some editors when editing a request/response body.
Many editors make it hard save a file without a terminating newline on the last line. When editing message bodies, this can cause problems. For now, I just strip the newlines off the end of the body when we return from an editor.
Diffstat (limited to 'test/test_server.py')
-rw-r--r--test/test_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_server.py b/test/test_server.py
index 1e3c1df4..b000cc46 100644
--- a/test/test_server.py
+++ b/test/test_server.py
@@ -41,7 +41,7 @@ class uProxy(tutils.ProxTest):
assert f.code == 200
assert f.read()
f.close()
-
+
l = self.log()
assert l[0].address
assert "host" in l[1].headers