pep8 fixes

This commit is contained in:
Martin A. Brown 2016-02-29 18:05:14 -08:00
parent 2974c6b5d7
commit 247019e646
1 changed files with 2 additions and 2 deletions

View File

@ -161,12 +161,12 @@ class Test_statfiles(unittest.TestCase):
class Test_statfile(TestToolsFilesystem):
def test_statfile_bogustype(self):
with self.assertRaises(TypeError) as ecm:
with self.assertRaises(TypeError):
statfile(0)
def test_statfile_enoent(self):
f = ntf(dir=self.tempdir)
st = statfile(f.name + '-ENOENT_TEST')
self.assertIsNone(statfile(f.name + '-ENOENT_TEST'))
class Test_stem_and_ext(unittest.TestCase):