diff options
Diffstat (limited to 'tests/test_examplefiles.py')
-rw-r--r-- | tests/test_examplefiles.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_examplefiles.py b/tests/test_examplefiles.py index 4ab2912e..41acf4ef 100644 --- a/tests/test_examplefiles.py +++ b/tests/test_examplefiles.py @@ -49,7 +49,11 @@ def test_example_files(): yield check_lexer, lx, absfn, outfn def check_lexer(lx, absfn, outfn): - text = open(absfn, 'rb').read() + fp = open(absfn, 'rb') + try: + text = fp.read() + finally: + fp.close() text = text.replace(b('\r\n'), b('\n')) text = text.strip(b('\n')) + b('\n') try: |