Skip to content

Commit

Permalink
Fix: Python3.10 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Aug 14, 2024
1 parent bf87a07 commit 1a21aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_assertion.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def wsgi_application(environ, start_response):
form = parse_qs(
fp.read(int(environ.get('CONTENT_LENGTH'))).decode(),
keep_blank_values=True,
strict_parsing=True
strict_parsing=False
)

try:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def wsgi_application(environ, start_response):
form = parse_qs(
fp.read(int(environ.get('CONTENT_LENGTH', 0))).decode(),
keep_blank_values=True,
strict_parsing=True
strict_parsing=False
)

start_response(
Expand Down

0 comments on commit 1a21aa8

Please sign in to comment.