diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_pathoc.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/test/test_pathoc.py b/test/test_pathoc.py index ce1476a6..0a37c4b7 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -30,14 +30,15 @@ class TestDaemon: if timeout: c.settimeout(timeout) s = cStringIO.StringIO() - c.print_requests( - requests, - showreq = showreq, - showresp = showresp, - explain = explain, - hexdump = hexdump, - fp = s - ) + for i in requests: + c.print_request( + i, + showreq = showreq, + showresp = showresp, + explain = explain, + hexdump = hexdump, + fp = s + ) return s.getvalue() def test_timeout(self): |