Mercurial > treepkg
diff test/test_run.py @ 195:e3ab8aca2b08
Make filesupport.py more PEP8 conformant. Rename method
checkFileContents to check_file_contents. Update the callers.
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Thu, 31 Jul 2008 10:36:17 +0000 |
parents | 98de92b816d4 |
children |
line wrap: on
line diff
--- a/test/test_run.py Thu Jul 31 10:17:56 2008 +0000 +++ b/test/test_run.py Thu Jul 31 10:36:17 2008 +0000 @@ -71,7 +71,7 @@ logfilename = self.temp_file_name("logfile") call([sys.executable, "-c", "print \"I'm a lumber jack and I'm OK\""], logfile=logfilename) - self.checkFileContents(logfilename, "I'm a lumber jack and I'm OK\n") + self.check_file_contents(logfilename, "I'm a lumber jack and I'm OK\n") class TestCaptureOutput(unittest.TestCase):