note a problem with test_system

This commit is contained in:
Jean-Paul Calderone 2020-12-06 18:38:51 -05:00
parent b464fa6483
commit 2955d22f72

View File

@ -2618,7 +2618,7 @@ class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase):
def _run_in_subprocess(ignored, verb, *args, **kwargs):
stdin = kwargs.get("stdin")
env = kwargs.get("env", os.environ)
env = kwargs.get("env", os.environ) # XXX Gets mutated below, great.
# Python warnings from the child process don't matter.
env["PYTHONWARNINGS"] = "ignore"
newargs = ["--node-directory", self.getdir("client0"), verb] + list(args)