diff options
author | andy <github@anarkystic.com> | 2010-08-16 14:16:21 +0200 |
---|---|---|
committer | andy <github@anarkystic.com> | 2010-08-16 14:16:21 +0200 |
commit | d508418214016d5c00aa8d304f9498f5b99a960b (patch) | |
tree | b414d1de4b7bf688c66c3180e9e7c5478ebcbc37 /nova/test.py | |
parent | c395dd793d84d1e9a3e0ac9c9c4044c50eea6399 (diff) | |
download | nova-d508418214016d5c00aa8d304f9498f5b99a960b.tar.gz nova-d508418214016d5c00aa8d304f9498f5b99a960b.tar.xz nova-d508418214016d5c00aa8d304f9498f5b99a960b.zip |
rather comprehensive style fixes
Diffstat (limited to 'nova/test.py')
-rw-r--r-- | nova/test.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nova/test.py b/nova/test.py index c7e08734f..c392c8a84 100644 --- a/nova/test.py +++ b/nova/test.py @@ -22,11 +22,11 @@ Allows overriding of flags for use of fakes, and some black magic for inline callbacks. """ -import mox -import stubout import sys import time +import mox +import stubout from tornado import ioloop from twisted.internet import defer from twisted.trial import unittest @@ -91,7 +91,6 @@ class TrialTestCase(unittest.TestCase): setattr(FLAGS, k, v) - class BaseTestCase(TrialTestCase): # TODO(jaypipes): Can this be moved into the TrialTestCase class? """Base test case class for all unit tests.""" |