diff options
author | termie <github@anarkystic.com> | 2011-02-21 14:55:06 -0800 |
---|---|---|
committer | termie <github@anarkystic.com> | 2011-02-21 14:55:06 -0800 |
commit | 83e4dcb7184169d4d35769c2d56b21e66c908e75 (patch) | |
tree | 6a2213d9ea68cf72e85312f6aa22adb7fed33efc /nova/test.py | |
parent | 9003241814ab67817ea910943e932d7b2e542eb6 (diff) | |
download | nova-83e4dcb7184169d4d35769c2d56b21e66c908e75.tar.gz nova-83e4dcb7184169d4d35769c2d56b21e66c908e75.tar.xz nova-83e4dcb7184169d4d35769c2d56b21e66c908e75.zip |
remove keyword argument, per review
Diffstat (limited to 'nova/test.py')
-rw-r--r-- | nova/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/test.py b/nova/test.py index 9bff401a1..4602f0313 100644 --- a/nova/test.py +++ b/nova/test.py @@ -147,7 +147,7 @@ class TestCase(unittest.TestCase): for k, v in self._original_flags.iteritems(): setattr(FLAGS, k, v) - def start_service(self, name=None, host=None, **kwargs): + def start_service(self, name, host=None, **kwargs): host = host and host or uuid.uuid4().hex kwargs.setdefault('host', host) kwargs.setdefault('binary', 'nova-%s' % name) |