summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2010-03-12 18:40:11 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2010-03-12 18:40:11 +0000
commit9a31186819fd0d1ae4c865fc3bee91c859159607 (patch)
treed8c7f76e78c2ad5cd513497adbfc20ad0dd5d101 /setuptools/command
parent182fb190b415d71fab8c1d228acb7c9e8ea7a6ef (diff)
downloadpython-setuptools-9a31186819fd0d1ae4c865fc3bee91c859159607.tar.gz
Fix wrong keyword argument for specifying test tunner to unittest
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@78878 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/test.py b/setuptools/command/test.py
index 59626f1..df5add5 100644
--- a/setuptools/command/test.py
+++ b/setuptools/command/test.py
@@ -129,7 +129,7 @@ class test(Command):
if self.test_runner is not None:
runner_ep = EntryPoint.parse("x="+self.test_runner)
runner_class = runner_ep.load(require=False)
- kw['runner'] = runner_class()
+ kw['testRunner'] = runner_class()
unittest.main(
None, None, [unittest.__file__]+self.test_args,
testLoader = loader_class(), **kw