Skip to content

Commit 0f8b1ad

Browse files
committed
tests - fix multipart
1 parent 6d75e97 commit 0f8b1ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pathv20_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def on_file(file):
185185
file.file_object.seek(0)
186186
files[file.field_name] = (file.file_name.decode(), file.file_object)
187187

188-
multipart.parse_form(request.headers, io.BytesIO(request.content), None, on_file)
188+
python_multipart.parse_form(request.headers, io.BytesIO(request.content), None, on_file)
189189

190190
ms = MultipartStream({}, files=files)
191191

0 commit comments

Comments
 (0)