~ubuntu-branches/ubuntu/saucy/gunicorn/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/requests/valid/025.py

  • Committer: Package Import Robot
  • Author(s): Chris Lamb
  • Date: 2013-07-04 17:28:14 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20130704172814-xnxr3mrqxeaihrys
Tags: 17.5-1
* New upstream release.
* Refresh and alter structure of 0001-drop-supplemental-groups.patch. Thanks
  to Randall Leeds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        ("CONTENT-LENGTH", "-1"),
7
7
        ("TRANSFER-ENCODING", "chunked")
8
8
    ],
9
 
    "body": "hello world"
 
9
    "body": b"hello world"
10
10
}
11
11
 
12
12
req2 = {
17
17
        ("TRANSFER-ENCODING", "chunked"),
18
18
        ("CONTENT-LENGTH", "-1"),
19
19
    ],
20
 
    "body": "hello world"
 
20
    "body": b"hello world"
21
21
}
22
22
 
23
23
request = [req1, req2]