diff options
| author | Hengqing Hu <hudayou@hotmail.com> | 2012-02-11 11:07:10 +0800 |
|---|---|---|
| committer | Hengqing Hu <hudayou@hotmail.com> | 2012-02-11 11:07:10 +0800 |
| commit | 7fb02c209ae5f1f76e714f424fb6abd357eacadf (patch) | |
| tree | 17f98320631d74cb2112e1cb1d7b2550d0e4a747 | |
| parent | 3858bcfbbc0a1cc7b0a455dbef16675c25b322a4 (diff) | |
| download | nova-7fb02c209ae5f1f76e714f424fb6abd357eacadf.tar.gz nova-7fb02c209ae5f1f76e714f424fb6abd357eacadf.tar.xz nova-7fb02c209ae5f1f76e714f424fb6abd357eacadf.zip | |
Fix minor typo in runner.py
Fixes bug #930519
Change-Id: I53f5f85d1ef8117f6a40a90ee1e9eb12a27dcd53
| -rw-r--r-- | nova/testing/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/testing/runner.py b/nova/testing/runner.py index 2f40befb0..1e3e16a2c 100644 --- a/nova/testing/runner.py +++ b/nova/testing/runner.py @@ -351,7 +351,7 @@ def run(): # front of it, automatically add that so we don't have to type as much for i, arg in enumerate(argv): if arg.startswith('test_'): - argv[i] = append('nova.tests.%s' % arg) + argv[i] = 'nova.tests.%s' % arg testdir = os.path.abspath(os.path.join("nova", "tests")) c = config.Config(stream=sys.stdout, |
