Commit 03c467a6fc98b23171124d056b085fd68fb385fa
1 parent
79da30fe
tests: cannot test yet encrypted.ppt
Showing
1 changed file
with
1 additions
and
1 deletions
tests/ppt_parser/test_basic.py
| ... | ... | @@ -16,7 +16,7 @@ class TestBasic(unittest.TestCase): |
| 16 | 16 | |
| 17 | 17 | def test_is_ppt(self): |
| 18 | 18 | """ test ppt_record_parser.is_ppt(filename) """ |
| 19 | - exceptions = [] | |
| 19 | + exceptions = ['encrypted.ppt', ] # actually is ppt but embedded | |
| 20 | 20 | for base_dir, _, files in os.walk(DATA_BASE_DIR): |
| 21 | 21 | for filename in files: |
| 22 | 22 | if filename in exceptions: | ... | ... |