From 5e1e90df89655abdddd113e107c6fbe461d4fac5 Mon Sep 17 00:00:00 2001 From: meejah Date: Thu, 7 May 2020 21:02:50 -0600 Subject: [PATCH] pass on stdin= --- integration/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integration/util.py b/integration/util.py index 0c41c6bd3..d85050d4e 100644 --- a/integration/util.py +++ b/integration/util.py @@ -151,11 +151,10 @@ def _cleanup_tahoe_process(tahoe_transport, exited): pass -def run_tahoe(reactor, request, *args): +def run_tahoe(reactor, request, stdin=None, *args): """ Helper to run tahoe with optional coverage """ - stdin = kwargs.get('stdin', None) protocol = _CollectOutputProtocol(stdin=stdin) process = _tahoe_runner_optional_coverage(protocol, reactor, request, args) process.exited = protocol.done