Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
systemsmanagement:saltstack:bundle:next
saltbundlepy-lxml
close_file_before_test.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File close_file_before_test.patch of Package saltbundlepy-lxml
--- src/lxml/tests/test_etree.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) --- a/src/lxml/tests/test_etree.py +++ b/src/lxml/tests/test_etree.py @@ -18,6 +18,7 @@ import re import gc import operator import textwrap +import tempfile import zlib import gzip @@ -5276,9 +5277,11 @@ class ETreeWriteTestCase(HelperTestCase) def test_write_file_gzip_parse(self): tree = self.parse(_bytes('<a>'+'<b/>'*200+'</a>')) - with tmpfile() as filename: - tree.write(filename, compression=9) - data = etree.tostring(etree.parse(filename)) + with tempfile.NamedTemporaryFile() as f: + tree.write(f.name, compression=9) + f.file.flush() + f.file.seek(0) + data = etree.tostring(etree.parse(f.name)) self.assertEqual(_bytes('<a>'+'<b/>'*200+'</a>'), data)
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor