From c46ad88fb9933f8a0f2abd19d060d2d347a52535 Mon Sep 17 00:00:00 2001 From: Oz Tiram Date: Tue, 6 Dec 2022 16:11:10 +0100 Subject: [PATCH] Tests: fix failing tests after removal of vistir.misc.run --- tests/integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index d0475557..a3314967 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -498,7 +498,7 @@ class VirtualEnv: cmd = [ python, "-m", "virtualenv", self.path.absolute().as_posix() ] - c = sp.run(cmd, shell=True) + c = sp.run(cmd) assert c.returncode == 0 def activate(self):