diff options
author | Martin Vilcans <martin@librador.com> | 2012-02-01 20:26:34 +0100 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2012-02-01 20:26:46 +0100 |
commit | 2bde078e4b5e8328a3a92f1e9b3b590469be9312 (patch) | |
tree | db9087eeae4e50b379cfda3eb69642c2c32e7694 /tests | |
parent | 2155c157ec1fd7c2784b1cd7c1038c91720d77ea (diff) | |
download | screenplain-2bde078e4b5e8328a3a92f1e9b3b590469be9312.tar.gz |
Some pep8 compliance regarding whitespace
Diffstat (limited to 'tests')
-rw-r--r-- | tests/files_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/files_test.py b/tests/files_test.py index 38f8892..af478fb 100644 --- a/tests/files_test.py +++ b/tests/files_test.py @@ -13,6 +13,7 @@ from screenplain.main import main source_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'files')) + def read_file(path): with open(path) as stream: return stream.read() @@ -23,7 +24,7 @@ class ParseTests(unittest2.TestCase): """ maxDiff = None - + def setUp(self): self.dir = tempfile.mkdtemp() |