From 596937e610719fcaf7269959d8b20d49b6381c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Fri, 8 Dec 2017 20:17:14 +0100 Subject: [PATCH] remove extra whitespace --- _pytest/pytester.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_pytest/pytester.py b/_pytest/pytester.py index 6e37d8b31..0b25d839b 100644 --- a/_pytest/pytester.py +++ b/_pytest/pytester.py @@ -32,7 +32,7 @@ def pytest_addoption(parser): help=("run FD checks if lsof is available")) parser.addoption('--runpytest', default="inprocess", dest="runpytest", - choices=("inprocess", "subprocess", ), + choices=("inprocess", "subprocess"), help=("run pytest sub runs in tests using an 'inprocess' " "or 'subprocess' (python -m main) method")) @@ -975,7 +975,7 @@ class Testdir: """ p = py.path.local.make_numbered_dir(prefix="runpytest-", keep=None, rootdir=self.tmpdir) - args = ('--basetemp=%s' % p, ) + args + args = ('--basetemp=%s' % p,) + args plugins = [x for x in self.plugins if isinstance(x, str)] if plugins: args = ('-p', plugins[0]) + args