From 719cdf20fa8c9921b81eaf6bf3df0d50c790de82 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Mon, 24 Sep 2018 20:15:07 +0200 Subject: Second pass of minor formatting --- tests/test_corrupted_files.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/test_corrupted_files.py') diff --git a/tests/test_corrupted_files.py b/tests/test_corrupted_files.py index aee1530..30039e6 100644 --- a/tests/test_corrupted_files.py +++ b/tests/test_corrupted_files.py @@ -146,19 +146,19 @@ class TestCorruptedFiles(unittest.TestCase): def test_docx(self): shutil.copy('./tests/data/dirty.png', './tests/data/clean.docx') with self.assertRaises(ValueError): - office.MSOfficeParser('./tests/data/clean.docx') + office.MSOfficeParser('./tests/data/clean.docx') os.remove('./tests/data/clean.docx') def test_flac(self): shutil.copy('./tests/data/dirty.png', './tests/data/clean.flac') with self.assertRaises(ValueError): - audio.FLACParser('./tests/data/clean.flac') + audio.FLACParser('./tests/data/clean.flac') os.remove('./tests/data/clean.flac') def test_mp3(self): shutil.copy('./tests/data/dirty.png', './tests/data/clean.mp3') with self.assertRaises(ValueError): - audio.MP3Parser('./tests/data/clean.mp3') + audio.MP3Parser('./tests/data/clean.mp3') os.remove('./tests/data/clean.mp3') def test_jpg(self): -- cgit v1.3