diff options
| author | Soren Hansen <soren@linux2go.dk> | 2011-03-17 21:43:22 +0100 |
|---|---|---|
| committer | Soren Hansen <soren@linux2go.dk> | 2011-03-17 21:43:22 +0100 |
| commit | 06c0b81e54adf3fb0635a7cd7679bcdb051e6263 (patch) | |
| tree | 6f39e70a719345563d7a7999aa2cc031849c8e59 | |
| parent | 9164b8d224ae6629cdac00248b98fad762bdfc10 (diff) | |
pep8
| -rw-r--r-- | nova/tests/test_utils.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nova/tests/test_utils.py b/nova/tests/test_utils.py index 51cd57c76..e08d229b0 100644 --- a/nova/tests/test_utils.py +++ b/nova/tests/test_utils.py @@ -62,7 +62,8 @@ exit 1 'always get passed ' 'correctly') runs = int(runs.strip()) - self.assertEquals(runs, 10, 'Ran %d times instead of 10.' % (runs,)) + self.assertEquals(runs, 10, + 'Ran %d times instead of 10.' % (runs,)) finally: os.unlink(tmpfilename) os.unlink(tmpfilename2) @@ -95,6 +96,7 @@ grep foo os.unlink(tmpfilename) os.unlink(tmpfilename2) + class GetFromPathTestCase(test.TestCase): def test_tolerates_nones(self): f = utils.get_from_path |
