summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2019-10-12 21:41:13 +0200
committerjvoisin2019-10-12 21:41:13 +0200
commit6d19a209355a7d1ef3bbee32ec7c9be93ed666ad (patch)
tree220da4b560ba2b809baa4ea90409f78104b5b80d
parent12489bb6821a8e67e135b461dd5b2722152a43ce (diff)
Remove an unused variable
-rw-r--r--tests/test_corrupted_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_corrupted_files.py b/tests/test_corrupted_files.py
index 7f8e223..6dc80a4 100644
--- a/tests/test_corrupted_files.py
+++ b/tests/test_corrupted_files.py
@@ -196,7 +196,7 @@ class TestCorruptedFiles(unittest.TestCase):
196 def test_png_lightweight(self): 196 def test_png_lightweight(self):
197 shutil.copy('./tests/data/dirty.torrent', './tests/data/clean.png') 197 shutil.copy('./tests/data/dirty.torrent', './tests/data/clean.png')
198 with self.assertRaises(ValueError): 198 with self.assertRaises(ValueError):
199 p = images.PNGParser('./tests/data/clean.png') 199 images.PNGParser('./tests/data/clean.png')
200 os.remove('./tests/data/clean.png') 200 os.remove('./tests/data/clean.png')
201 201
202 def test_avi(self): 202 def test_avi(self):