X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2a54a1a2eaf66e7d65dcfbb6023a9ebc0ef138a0..d18f17e7a8bdcafd4ef341b1cbe90c5c275a9dcb:/src/api/tests/tests.py?ds=sidebyside

diff --git a/src/api/tests/tests.py b/src/api/tests/tests.py
index c9afad7b0..5ad5ca34f 100644
--- a/src/api/tests/tests.py
+++ b/src/api/tests/tests.py
@@ -108,16 +108,18 @@ class TagTests(ApiTest):
 class PictureTests(ApiTest):
     def test_publish(self):
         slug = "kandinsky-composition-viii"
-        xml = SimpleUploadedFile(
-            'composition8.xml',
-            open(path.join(
+        with open(path.join(
                 picture.tests.__path__[0], "files", slug + ".xml"
-            ), 'rb').read())
-        img = SimpleUploadedFile(
-            'kompozycja-8.png',
-            open(path.join(
+            ), 'rb') as f:
+            xml = SimpleUploadedFile(
+                'composition8.xml',
+                f.read())
+        with open(path.join(
                 picture.tests.__path__[0], "files", slug + ".png"
-            ), 'rb').read())
+            ), 'rb') as f:
+            img = SimpleUploadedFile(
+                'kompozycja-8.png',
+                f.read())
 
         import_form = PictureImportForm({}, {
             'picture_xml_file': xml,