Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Aug 6, 2024
1 parent f759f80 commit a3e5c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/requests/valid/025.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
request = {
"method": "POST",
"uri": uri("/chunked"),
"version": (1, 0),
"version": (1, 1),
"headers": [
('TRANSFER-ENCODING', 'gzip'),
('TRANSFER-ENCODING', 'chunked')
],
"body": 'hello world'
"body": b"hello world"
}
4 changes: 2 additions & 2 deletions tests/requests/valid/025_line.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
request = {
"method": "POST",
"uri": uri("/chunked"),
"version": (1, 0),
"version": (1, 1),
"headers": [
('TRANSFER-ENCODING', 'gzip,chunked')

],
"body": 'hello world'
"body": b"hello world"
}

0 comments on commit a3e5c3a

Please sign in to comment.