summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-02-13 15:27:39 +0000
committerGerrit Code Review <review@openstack.org>2012-02-13 15:27:39 +0000
commitaf552efe4d64a72c3233eeadd2d8e95d70807406 (patch)
treefcc921fd1f28c2edf555769966d5af77663f4a4e
parentd8f8bad0f26b4438986ab1a469d89d03b22551db (diff)
parent7fb02c209ae5f1f76e714f424fb6abd357eacadf (diff)
downloadnova-af552efe4d64a72c3233eeadd2d8e95d70807406.tar.gz
nova-af552efe4d64a72c3233eeadd2d8e95d70807406.tar.xz
nova-af552efe4d64a72c3233eeadd2d8e95d70807406.zip
Merge "Fix minor typo in runner.py"
-rw-r--r--nova/testing/runner.py2
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,