Skip to content

Commit f907b83

Browse files
committed
Fix tests/test_parsers.py::TestFileUploadParser::test_parse
1 parent ac39602 commit f907b83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def test_parse(self):
6262
self.stream.seek(0)
6363
data_and_files = parser.parse(self.stream, None, self.parser_context)
6464
file_obj = data_and_files.files['file']
65-
assert file_obj._size == 14
65+
assert file_obj.size == 14
6666

6767
def test_parse_missing_filename(self):
6868
"""

0 commit comments

Comments
 (0)